Move source location from unit.cpp to source-location.cpp
[hiphop-php.git] / hphp / vixl / platform.h
blob3c7b80cf40513dfc75ba6e01c0f467a01f87ed52
1 // Copyright 2013, ARM Limited
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are met:
6 //
7 // * Redistributions of source code must retain the above copyright notice,
8 // this list of conditions and the following disclaimer.
9 // * Redistributions in binary form must reproduce the above copyright notice,
10 // this list of conditions and the following disclaimer in the documentation
11 // and/or other materials provided with the distribution.
12 // * Neither the name of ARM Limited nor the names of its contributors may be
13 // used to endorse or promote products derived from this software without
14 // specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
17 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
20 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #ifndef PLATFORM_H
28 #define PLATFORM_H
30 #include "hphp/util/assertions.h"
32 #ifdef _M_X64
33 #include <intrin.h> // for __debugbreak()
34 #endif
36 // Define platform specific functionalities.
38 namespace vixl {
39 inline void HostBreakpoint() {
40 #if defined(__x86_64__)
41 asm("int3");
42 #elif defined(_M_X64)
43 __debugbreak();
44 #elif defined(__AARCH64EL__)
45 // TODO: Implement HostBreakpoint on a64.
46 not_implemented();
47 #elif defined(__powerpc64__)
48 asm("trap");
49 #else
50 # error How do you set a host breakpoint on your architecture?
51 #endif
53 } // namespace vixl
55 #endif