//===----- x86_64.cpp - Generic JITLink x86-64 edge kinds, utilities ------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Generic utilities for graphs representing x86-64 objects. // //===----------------------------------------------------------------------===// #include "llvm/ExecutionEngine/JITLink/x86_64.h" #define DEBUG_TYPE … namespace llvm { namespace jitlink { namespace x86_64 { const char *getEdgeKindName(Edge::Kind K) { … } const char NullPointerContent[PointerSize] = …; const char PointerJumpStubContent[6] = …; Error optimizeGOTAndStubAccesses(LinkGraph &G) { … } } // end namespace x86_64 } // end namespace jitlink } // end namespace llvm