Skip to content

Commit f73784f

Browse files
authored
Add a sample to test C++ exceptions support (ARM-software#432)
Add a sample to test C++ exceptions support
1 parent bfad528 commit f73784f

File tree

5 files changed

+66
-0
lines changed

5 files changed

+66
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# RUN: make -C %samples_dir/src/cpp-baremetal-semihosting-exceptions clean
2+
# RUN: make -C %samples_dir/src/cpp-baremetal-semihosting-exceptions run BIN_PATH=%unpack_directory/bin 2>&1 | FileCheck %s
3+
# RUN: make -C %samples_dir/src/cpp-baremetal-semihosting-exceptions clean
4+
# CHECK: No exceptions.
5+
# CHECK: Exception caught.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#
2+
# Copyright (c) 2024, Arm Limited and affiliates.
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
include ../../Makefile.conf
19+
20+
build: hello.hex hello-exn.hex
21+
22+
hello.hex: hello.cpp
23+
$(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) $(CPP_FLAGS) -print-multi-directory -g -T ../../ldscripts/microbit.ld -o hello.elf $^ | grep -v "_exn_"
24+
$(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) $(CPP_FLAGS) -g -T ../../ldscripts/microbit.ld -o hello.elf $^
25+
$(BIN_PATH)/llvm-objcopy -O ihex hello.elf hello.hex
26+
27+
hello-exn.hex: hello-exn.cpp
28+
$(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) -print-multi-directory -g -T ../../ldscripts/microbit.ld -o hello.elf $^ | grep "_exn_"
29+
$(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) -g -T ../../ldscripts/microbit.ld -o hello-exn.elf $^
30+
$(BIN_PATH)/llvm-objcopy -O ihex hello-exn.elf hello-exn.hex
31+
32+
run: hello.hex hello-exn.hex
33+
qemu-system-arm -M microbit -semihosting -nographic -device loader,file=hello.hex
34+
qemu-system-arm -M microbit -semihosting -nographic -device loader,file=hello-exn.hex 2>&1 | grep "caught"
35+
36+
clean:
37+
rm -f *.elf *.hex
38+
39+
.PHONY: clean run
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Bare-metal semihosting exceptions sample
2+
3+
This sample shows and tests that C++ exceptions and corresponding
4+
library variant selection work correctly.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#include <iostream>
2+
3+
int main(void) {
4+
try {
5+
throw "error";
6+
} catch(...) {
7+
std::cout << "Exception caught." << std::endl;
8+
return 0;
9+
}
10+
std::cout << "Exception skipped." << std::endl;
11+
return 1;
12+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <iostream>
2+
3+
int main(void) {
4+
std::cout << "No exceptions." << std::endl;
5+
return 0;
6+
}

0 commit comments

Comments
 (0)