Skip to content

Commit

Permalink
Merge pull request goplus#594 from xushiwei/q
Browse files Browse the repository at this point in the history
cpp/std: support nogc
  • Loading branch information
xushiwei authored Jul 29, 2024
2 parents 9dca62f + 8b6b039 commit b3b4f55
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 10 deletions.
39 changes: 39 additions & 0 deletions cpp/std/std_gc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
//go:build !nogc
// +build !nogc

/*
* Copyright (c) 2024 The GoPlus Authors (goplus.org). All rights reserved.
*
* 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 std

import (
"unsafe"

"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/bdwgc"
)

// -----------------------------------------------------------------------------

func allocString() *String {
ptr := bdwgc.Malloc(unsafe.Sizeof(String{}))
bdwgc.RegisterFinalizer(ptr, func(obj, data c.Pointer) {
(*String)(obj).Dispose()
}, nil, nil, nil)
return (*String)(ptr)
}

// -----------------------------------------------------------------------------
35 changes: 35 additions & 0 deletions cpp/std/std_nogc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
//go:build nogc
// +build nogc

/*
* Copyright (c) 2024 The GoPlus Authors (goplus.org). All rights reserved.
*
* 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 std

import (
"unsafe"

"github.com/goplus/llgo/c"
)

// -----------------------------------------------------------------------------

func allocString() *String {
ptr := c.Malloc(unsafe.Sizeof(String{}))
return (*String)(ptr)
}

// -----------------------------------------------------------------------------
11 changes: 1 addition & 10 deletions cpp/std/string.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import (
"unsafe"

"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/bdwgc"
)

// -----------------------------------------------------------------------------
Expand All @@ -32,7 +31,7 @@ type StringView = string

// String represents a C++ std::string object.
type String struct {
Unused [24]byte
Unused [3]uintptr
}

// llgo:link (*String).InitEmpty C.stdStringInitEmpty
Expand All @@ -52,14 +51,6 @@ func (s *String) Dispose() {}

// -----------------------------------------------------------------------------

func allocString() *String {
ptr := bdwgc.Malloc(unsafe.Sizeof(String{}))
bdwgc.RegisterFinalizer(ptr, func(obj, data c.Pointer) {
(*String)(obj).Dispose()
}, nil, nil, nil)
return (*String)(ptr)
}

// NewString creates a C++ std::string object.
func NewString(v string) *String {
ret := allocString()
Expand Down

0 comments on commit b3b4f55

Please sign in to comment.