Skip to content

Commit 592b597

Browse files
Tensorstore Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 786051531 Change-Id: Ibb91a03e7c153d4561d81a51845b549573d47d86
1 parent ce3c259 commit 592b597

File tree

10 files changed

+15
-19
lines changed

10 files changed

+15
-19
lines changed

tensorstore/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ tensorstore_cc_library(
186186
":index_interval",
187187
":rank",
188188
":static_cast",
189-
"//tensorstore/internal:gdb_scripting",
189+
"//tensorstore/internal:lldb_scripting",
190190
"//tensorstore/internal/container:multi_vector",
191191
"//tensorstore/internal/container:multi_vector_view",
192192
"//tensorstore/internal/meta:attributes",
@@ -810,8 +810,8 @@ tensorstore_cc_library(
810810
":index",
811811
":rank",
812812
":static_cast",
813-
"//tensorstore/internal:gdb_scripting",
814813
"//tensorstore/internal:integer_overflow",
814+
"//tensorstore/internal:lldb_scripting",
815815
"//tensorstore/internal/container:multi_vector",
816816
"//tensorstore/internal/container:multi_vector_view",
817817
"//tensorstore/internal/meta:attributes",

tensorstore/box.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include "tensorstore/index_interval.h"
3232
#include "tensorstore/internal/container/multi_vector.h"
3333
#include "tensorstore/internal/container/multi_vector_view.h"
34-
#include "tensorstore/internal/gdb_scripting.h"
34+
#include "tensorstore/internal/lldb_scripting.h"
3535
#include "tensorstore/internal/meta/attributes.h"
3636
#include "tensorstore/internal/meta/type_traits.h"
3737
#include "tensorstore/rank.h"

tensorstore/internal/BUILD

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,9 @@ tensorstore_cc_library(
399399
)
400400

401401
tensorstore_cc_library(
402-
name = "gdb_scripting",
403-
hdrs = ["gdb_scripting.h"],
402+
name = "lldb_scripting",
403+
hdrs = ["lldb_scripting.h"],
404404
deps = [
405-
"@abseil-cpp//absl/base:core_headers",
406405
],
407406
)
408407

tensorstore/internal/container/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ tensorstore_cc_library(
160160
],
161161
deps = [
162162
"//tensorstore:rank",
163-
"//tensorstore/internal:gdb_scripting",
163+
"//tensorstore/internal:lldb_scripting",
164164
"//tensorstore/internal/meta",
165165
"//tensorstore/internal/meta:type_traits",
166166
"//tensorstore/util:division",
@@ -186,7 +186,7 @@ tensorstore_cc_library(
186186
deps = [
187187
"//tensorstore:index",
188188
"//tensorstore:rank",
189-
"//tensorstore/internal:gdb_scripting",
189+
"//tensorstore/internal:lldb_scripting",
190190
"//tensorstore/internal/meta",
191191
"//tensorstore/internal/meta:type_traits",
192192
"//tensorstore/util:span",

tensorstore/internal/container/multi_vector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <utility>
2525

2626
#include "tensorstore/internal/container/multi_vector_impl.h" // IWYU pragma: export
27-
#include "tensorstore/internal/gdb_scripting.h"
27+
#include "tensorstore/internal/lldb_scripting.h"
2828
#include "tensorstore/internal/meta/meta.h"
2929
#include "tensorstore/internal/meta/type_traits.h"
3030
#include "tensorstore/rank.h"

tensorstore/internal/container/multi_vector_view.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <cassert>
2121

2222
#include "tensorstore/index.h"
23-
#include "tensorstore/internal/gdb_scripting.h"
23+
#include "tensorstore/internal/lldb_scripting.h"
2424
#include "tensorstore/internal/meta/meta.h"
2525
#include "tensorstore/internal/meta/type_traits.h"
2626
#include "tensorstore/rank.h"

tensorstore/internal/gdb_scripting.h renamed to tensorstore/internal/lldb_scripting.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_
16-
#define TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_
17-
18-
// GDB script registration not supported.
19-
#define TENSORSTORE_GDB_AUTO_SCRIPT(name) // noop
15+
#ifndef TENSORSTORE_INTERNAL_LLDB_SCRIPTING_H_
16+
#define TENSORSTORE_INTERNAL_LLDB_SCRIPTING_H_
2017

2118
// LLDB script registration not supported.
2219
#define TENSORSTORE_LLDB_AUTO_SCRIPT(name) // noop
2320

24-
#endif // TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_
21+
#endif // TENSORSTORE_INTERNAL_LLDB_SCRIPTING_H_

tensorstore/strided_layout.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#include "tensorstore/index.h"
3939
#include "tensorstore/internal/container/multi_vector.h"
4040
#include "tensorstore/internal/container/multi_vector_view.h"
41-
#include "tensorstore/internal/gdb_scripting.h"
41+
#include "tensorstore/internal/lldb_scripting.h"
4242
#include "tensorstore/internal/meta/attributes.h"
4343
#include "tensorstore/internal/meta/type_traits.h"
4444
#include "tensorstore/rank.h"

tensorstore/util/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ tensorstore_cc_library(
571571
name = "span",
572572
hdrs = ["span.h"],
573573
deps = [
574-
"//tensorstore/internal:gdb_scripting",
574+
"//tensorstore/internal:lldb_scripting",
575575
"//tensorstore/internal/meta:attributes",
576576
"@abseil-cpp//absl/base:core_headers",
577577
"@abseil-cpp//absl/log:absl_log",

tensorstore/util/span.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include "absl/base/attributes.h"
3030
#include "absl/base/optimization.h"
3131
#include "absl/log/absl_log.h"
32-
#include "tensorstore/internal/gdb_scripting.h"
32+
#include "tensorstore/internal/lldb_scripting.h"
3333
#include "tensorstore/internal/meta/attributes.h"
3434

3535
TENSORSTORE_LLDB_AUTO_SCRIPT("span_lldb.py")

0 commit comments

Comments
 (0)