Add code to search and generate the necessary include files for the Clang tool.

PiperOrigin-RevId: 655691975
This commit is contained in:
Anthony Cui
2024-07-24 14:04:56 -07:00
committed by gVisor bot
parent 842894d1c6
commit 91270b8427
2 changed files with 100 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ go_library(
srcs = [
"clang_config.go",
"json_definitions.go",
"sources.go",
],
visibility = ["//tools/nvidia_driver_differ:__subpackages__"],
deps = ["@com_github_google_go_cmp//cmp:go_default_library"],
@@ -0,0 +1,99 @@
// Copyright 2024 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package parser
import (
"bufio"
"fmt"
"os"
"path/filepath"
)
// DriverSourceDir represents a directory containing the source code for a given driver version.
type DriverSourceDir struct {
Path string
Version string
}
// GlobDriverFiles returns all files in the given driver directory that match the given pattern.
func (d *DriverSourceDir) GlobDriverFiles(pattern string) ([]string, error) {
files, err := filepath.Glob(fmt.Sprintf("%s/%s", d.Path, pattern))
if err != nil {
return nil, fmt.Errorf("failed to glob files: %w", err)
}
return files, nil
}
// GetNonUVMSourcePaths returns the list of paths for non-uvm source files.
func (d *DriverSourceDir) GetNonUVMSourcePaths() ([]string, error) {
patterns := []string{
"src/common/sdk/nvidia/inc/nvos.h",
"src/nvidia/arch/nvalloc/unix/include/nv-ioctl.h",
"src/common/sdk/nvidia/inc/class/*.h",
"src/common/sdk/nvidia/inc/ctrl/*/*.h",
}
sources := []string{}
for _, pattern := range patterns {
files, err := d.GlobDriverFiles(pattern)
if err != nil {
return nil, fmt.Errorf("failed to glob files: %w", err)
}
sources = append(sources, files...)
}
return sources, nil
}
// GetUVMSourcePaths returns the list of paths for uvm source files.
func (d *DriverSourceDir) GetUVMSourcePaths() []string {
return []string{
fmt.Sprintf("%s/kernel-open/nvidia-uvm/uvm_ioctl.h", d.Path),
fmt.Sprintf("%s/kernel-open/nvidia-uvm/uvm_linux_ioctl.h", d.Path),
}
}
// GetNonUVMIncludePaths returns the list of paths for non-uvm include files.
func (d *DriverSourceDir) GetNonUVMIncludePaths() []string {
return []string{
fmt.Sprintf("%s/src/common/sdk/nvidia/inc", d.Path),
fmt.Sprintf("%s/src/common/shared/inc", d.Path),
fmt.Sprintf("%s/src/nvidia/arch/nvalloc/unix/include", d.Path),
}
}
// GetUVMIncludePaths returns the list of paths for uvm include files.
func (d *DriverSourceDir) GetUVMIncludePaths() []string {
return []string{
fmt.Sprintf("%s/kernel-open/common/inc", d.Path),
}
}
// WriteIncludeFile writes an cc file at file that includes all the given sources.
func WriteIncludeFile(sources []string, path string) error {
f, err := os.Create(path)
if err != nil {
return fmt.Errorf("failed to create include file: %w", err)
}
defer f.Close()
w := bufio.NewWriter(f)
for _, source := range sources {
if _, err := w.WriteString(fmt.Sprintf("#include \"%s\"\n", source)); err != nil {
return fmt.Errorf("failed to write to include file: %w", err)
}
}
return w.Flush()
}