upload android base code part1
This commit is contained in:
parent
e02f198e2d
commit
0a1de6c4b3
48159 changed files with 9071466 additions and 0 deletions
198
android/frameworks/rs/rsov/compiler/Android.mk
Normal file
198
android/frameworks/rs/rsov/compiler/Android.mk
Normal file
|
@ -0,0 +1,198 @@
|
|||
#
|
||||
# Copyright (C) 2016 The Android Open Source Project
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
LLVM_ROOT_PATH := external/llvm
|
||||
LIBBCC_ROOT_PATH := frameworks/compile/libbcc
|
||||
LIBSPIRV_ROOT_PATH := external/spirv-llvm/lib/SPIRV
|
||||
|
||||
FORCE_RS2SPIRV_DEBUG_BUILD ?= false
|
||||
RS2SPRIV_DEVICE_BUILD ?= true
|
||||
|
||||
RS2SPIRV_SOURCES := \
|
||||
rs2spirv.cpp \
|
||||
Builtin.cpp \
|
||||
Context.cpp \
|
||||
GlobalAllocPass.cpp \
|
||||
GlobalAllocSPIRITPass.cpp \
|
||||
GlobalMergePass.cpp \
|
||||
InlinePreparationPass.cpp \
|
||||
RemoveNonkernelsPass.cpp \
|
||||
RSAllocationUtils.cpp \
|
||||
RSSPIRVWriter.cpp \
|
||||
Wrapper.cpp \
|
||||
|
||||
RS2SPIRV_INCLUDES := \
|
||||
$(LIBSPIRV_ROOT_PATH) \
|
||||
$(LIBSPIRV_ROOT_PATH)/Mangler \
|
||||
$(LIBSPIRV_ROOT_PATH)/libSPIRV \
|
||||
$(LIBBCC_ROOT_PATH)/include \
|
||||
$(LLVM_ROOT_PATH)/include \
|
||||
$(LLVM_ROOT_PATH)/host/include
|
||||
|
||||
#=====================================================================
|
||||
# Unit tests for Wrapper module
|
||||
#=====================================================================
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
include $(CLEAR_TBLGEN_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
Builtin.cpp \
|
||||
Context.cpp \
|
||||
GlobalAllocSPIRITPass.cpp \
|
||||
RSAllocationUtils.cpp \
|
||||
Wrapper.cpp \
|
||||
Wrapper_test.cpp \
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libgtest_host
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libLLVM libbcinfo libspirit
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
$(LLVM_ROOT_PATH)/include \
|
||||
$(LLVM_ROOT_PATH)/host/include
|
||||
|
||||
# End protobuf section
|
||||
|
||||
LOCAL_MODULE := Wrapper_test
|
||||
LOCAL_MULTILIB := first
|
||||
LOCAL_MODULE_TAGS := tests
|
||||
|
||||
LOCAL_MODULE_CLASS := NATIVE_TESTS
|
||||
|
||||
include $(LLVM_ROOT_PATH)/llvm.mk
|
||||
include $(LLVM_HOST_BUILD_MK)
|
||||
include $(LLVM_GEN_INTRINSICS_MK)
|
||||
include $(LLVM_GEN_ATTRIBUTES_MK)
|
||||
include $(BUILD_HOST_NATIVE_TEST)
|
||||
|
||||
#=====================================================================
|
||||
# Unit tests for Builtin module
|
||||
#=====================================================================
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
include $(CLEAR_TBLGEN_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
Builtin.cpp \
|
||||
Builtin_test.cpp \
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libgtest_host
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libspirit
|
||||
|
||||
# End protobuf section
|
||||
|
||||
LOCAL_MODULE := Builtin_test
|
||||
LOCAL_MULTILIB := first
|
||||
LOCAL_MODULE_TAGS := tests
|
||||
|
||||
LOCAL_MODULE_CLASS := NATIVE_TESTS
|
||||
|
||||
include $(BUILD_HOST_NATIVE_TEST)
|
||||
|
||||
#=====================================================================
|
||||
# Host Executable rs2spirv
|
||||
#=====================================================================
|
||||
|
||||
# Don't build for unbundled branches
|
||||
ifeq (,$(TARGET_BUILD_APPS))
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
include $(CLEAR_TBLGEN_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
$(RS2SPIRV_SOURCES)
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
$(RS2SPIRV_INCLUDES)
|
||||
|
||||
LOCAL_MODULE := rs2spirv
|
||||
LOCAL_MODULE_CLASS := EXECUTABLES
|
||||
|
||||
# TODO: fix the remaining warnings
|
||||
|
||||
LOCAL_CFLAGS += $(TOOL_CFLAGS) \
|
||||
-D_SPIRV_LLVM_API \
|
||||
-Wno-error=pessimizing-move \
|
||||
-Wno-error=unused-variable \
|
||||
-Wno-error=unused-private-field \
|
||||
-Wno-error=unused-function \
|
||||
-Wno-error=dangling-else \
|
||||
-Wno-error=ignored-qualifiers \
|
||||
-Wno-error=non-virtual-dtor
|
||||
|
||||
ifeq (true, $(FORCE_RS2SPIRV_DEBUG_BUILD))
|
||||
LOCAL_CFLAGS += -O0 -DRS2SPIRV_DEBUG=1
|
||||
endif
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libLLVM libbcinfo libSPIRV libspirit
|
||||
|
||||
include $(LLVM_ROOT_PATH)/llvm.mk
|
||||
include $(LLVM_HOST_BUILD_MK)
|
||||
include $(LLVM_GEN_INTRINSICS_MK)
|
||||
include $(LLVM_GEN_ATTRIBUTES_MK)
|
||||
include $(BUILD_HOST_EXECUTABLE)
|
||||
|
||||
endif # Don't build in unbundled branches
|
||||
|
||||
#=====================================================================
|
||||
# Device Executable rs2spirv
|
||||
#=====================================================================
|
||||
|
||||
ifneq (true,$(RS2SPRIV_DEVICE_BUILD)))
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
include $(CLEAR_TBLGEN_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
$(RS2SPIRV_SOURCES)
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
$(RS2SPIRV_INCLUDES)
|
||||
|
||||
LOCAL_MODULE := rs2spirv
|
||||
LOCAL_MODULE_CLASS := EXECUTABLES
|
||||
|
||||
LOCAL_SHARED_LIBRARIES += libLLVM libbcinfo libSPIRV libspirit
|
||||
|
||||
LOCAL_CFLAGS += $(TOOL_CFLAGS) \
|
||||
-D_SPIRV_LLVM_API \
|
||||
-Wno-error=pessimizing-move \
|
||||
-Wno-error=unused-variable \
|
||||
-Wno-error=unused-private-field \
|
||||
-Wno-error=unused-function \
|
||||
-Wno-error=dangling-else \
|
||||
-Wno-error=ignored-qualifiers \
|
||||
-Wno-error=non-virtual-dtor \
|
||||
|
||||
ifeq (true, $(FORCE_RS2SPIRV_DEBUG_BUILD))
|
||||
LOCAL_CFLAGS += -O0 -DRS2SPIRV_DEBUG=1
|
||||
endif
|
||||
|
||||
include $(LLVM_GEN_INTRINSICS_MK)
|
||||
include $(LLVM_GEN_ATTRIBUTES_MK)
|
||||
include $(LLVM_DEVICE_BUILD_MK)
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
||||
endif # Don't build in unbundled branches
|
||||
|
||||
#=====================================================================
|
||||
# Include Subdirectories
|
||||
#=====================================================================
|
||||
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
Loading…
Add table
Add a link
Reference in a new issue