|
LLVM 22.0.0git
|
#include "AArch64.h"#include "AArch64MCInstLower.h"#include "AArch64MachineFunctionInfo.h"#include "AArch64RegisterInfo.h"#include "AArch64Subtarget.h"#include "AArch64TargetObjectFile.h"#include "MCTargetDesc/AArch64AddressingModes.h"#include "MCTargetDesc/AArch64InstPrinter.h"#include "MCTargetDesc/AArch64MCAsmInfo.h"#include "MCTargetDesc/AArch64MCTargetDesc.h"#include "MCTargetDesc/AArch64TargetStreamer.h"#include "TargetInfo/AArch64TargetInfo.h"#include "Utils/AArch64BaseInfo.h"#include "llvm/ADT/DenseMap.h"#include "llvm/ADT/ScopeExit.h"#include "llvm/ADT/SmallString.h"#include "llvm/ADT/SmallVector.h"#include "llvm/ADT/StringRef.h"#include "llvm/ADT/Twine.h"#include "llvm/BinaryFormat/COFF.h"#include "llvm/BinaryFormat/ELF.h"#include "llvm/BinaryFormat/MachO.h"#include "llvm/CodeGen/AsmPrinter.h"#include "llvm/CodeGen/FaultMaps.h"#include "llvm/CodeGen/MachineBasicBlock.h"#include "llvm/CodeGen/MachineFunction.h"#include "llvm/CodeGen/MachineInstr.h"#include "llvm/CodeGen/MachineJumpTableInfo.h"#include "llvm/CodeGen/MachineModuleInfoImpls.h"#include "llvm/CodeGen/MachineOperand.h"#include "llvm/CodeGen/StackMaps.h"#include "llvm/CodeGen/TargetRegisterInfo.h"#include "llvm/IR/DataLayout.h"#include "llvm/IR/DebugInfoMetadata.h"#include "llvm/IR/Mangler.h"#include "llvm/IR/Module.h"#include "llvm/MC/MCAsmInfo.h"#include "llvm/MC/MCContext.h"#include "llvm/MC/MCInst.h"#include "llvm/MC/MCInstBuilder.h"#include "llvm/MC/MCSectionELF.h"#include "llvm/MC/MCSectionMachO.h"#include "llvm/MC/MCStreamer.h"#include "llvm/MC/MCSymbol.h"#include "llvm/MC/TargetRegistry.h"#include "llvm/Support/Casting.h"#include "llvm/Support/CommandLine.h"#include "llvm/Support/Compiler.h"#include "llvm/Support/ErrorHandling.h"#include "llvm/Support/raw_ostream.h"#include "llvm/Target/TargetMachine.h"#include "llvm/TargetParser/Triple.h"#include "llvm/Transforms/Instrumentation/HWAddressSanitizer.h"#include <cassert>#include <cstdint>#include <map>#include <memory>#include "AArch64GenMCPseudoLowering.inc"Go to the source code of this file.
Macros | |
| #define | DEBUG_TYPE "asm-printer" |
Enumerations | |
| enum | PtrauthCheckMode { Default , Unchecked , Poison , Trap } |
Functions | |
| static void | emitAuthenticatedPointer (MCStreamer &OutStreamer, MCSymbol *StubLabel, const MCExpr *StubAuthPtrRef) |
| INITIALIZE_PASS (AArch64AsmPrinter, "aarch64-asm-printer", "AArch64 Assembly Printer", false, false) extern "C" LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAArch64AsmPrinter() | |
Variables | |
| static cl::opt< PtrauthCheckMode > | PtrauthAuthChecks ("aarch64-ptrauth-auth-checks", cl::Hidden, cl::values(clEnumValN(Unchecked, "none", "don't test for failure"), clEnumValN(Poison, "poison", "poison on failure"), clEnumValN(Trap, "trap", "trap on failure")), cl::desc("Check pointer authentication auth/resign failures"), cl::init(Default)) |
| #define DEBUG_TYPE "asm-printer" |
Definition at line 83 of file AArch64AsmPrinter.cpp.
| enum PtrauthCheckMode |
| Enumerator | |
|---|---|
| Default | |
| Unchecked | |
| Poison | |
| Trap | |
Definition at line 74 of file AArch64AsmPrinter.cpp.
|
static |
Definition at line 936 of file AArch64AsmPrinter.cpp.
References llvm::MCStreamer::emitLabel(), and llvm::MCStreamer::emitValue().
| INITIALIZE_PASS | ( | AArch64AsmPrinter | , |
| "aarch64-asm-printer" | , | ||
| "AArch64 Assembly Printer" | , | ||
| false | , | ||
| false | ) |
Definition at line 3646 of file AArch64AsmPrinter.cpp.
References llvm::getTheAArch64_32Target(), llvm::getTheAArch64beTarget(), llvm::getTheAArch64leTarget(), llvm::getTheARM64_32Target(), llvm::getTheARM64Target(), LLVM_ABI, LLVM_EXTERNAL_VISIBILITY, X, and Y.
|
static |