# SPDX-License-Identifier: GPL-2.0 
 | 
# 
 | 
# Makefile for Kernel-based Virtual Machine module, HYP part 
 | 
# 
 | 
  
 | 
ccflags-y += -fno-stack-protector -DDISABLE_BRANCH_PROFILING \ 
 | 
        $(DISABLE_STACKLEAK_PLUGIN) \ 
 | 
        $(DISABLE_CFI) 
 | 
  
 | 
ifeq ($(cc-name),clang) 
 | 
ccflags-y += -fno-jump-tables 
 | 
endif 
 | 
  
 | 
KVM=../../../../virt/kvm 
 | 
  
 | 
obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/vgic-v3-sr.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/timer-sr.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/aarch32.o 
 | 
  
 | 
obj-$(CONFIG_KVM_ARM_HOST) += vgic-v2-cpuif-proxy.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += sysreg-sr.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += debug-sr.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += entry.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += switch.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += fpsimd.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += tlb.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += hyp-entry.o 
 | 
obj-$(CONFIG_KVM_ARM_HOST) += s2-setup.o 
 | 
  
 | 
# KVM code is run at a different exception code with a different map, so 
 | 
# compiler instrumentation that inserts callbacks or checks into the code may 
 | 
# cause crashes. Just disable it. 
 | 
GCOV_PROFILE    := n 
 | 
KASAN_SANITIZE    := n 
 | 
UBSAN_SANITIZE    := n 
 | 
KCOV_INSTRUMENT    := n 
 | 
  
 | 
# remove the SCS flags from all objects in this directory 
 | 
KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_SCS), $(KBUILD_CFLAGS)) 
 |