LLVM  8.0.1
FEntryInserter.cpp
Go to the documentation of this file.
1 //===-- FEntryInsertion.cpp - Patchable prologues for LLVM -------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file edits function bodies to insert fentry calls.
11 //
12 //===----------------------------------------------------------------------===//
13 
17 #include "llvm/CodeGen/Passes.h"
21 #include "llvm/IR/Function.h"
22 #include "llvm/IR/Module.h"
23 
24 using namespace llvm;
25 
26 namespace {
27 struct FEntryInserter : public MachineFunctionPass {
28  static char ID; // Pass identification, replacement for typeid
29  FEntryInserter() : MachineFunctionPass(ID) {
31  }
32 
33  bool runOnMachineFunction(MachineFunction &F) override;
34 };
35 }
36 
37 bool FEntryInserter::runOnMachineFunction(MachineFunction &MF) {
38  const std::string FEntryName =
39  MF.getFunction().getFnAttribute("fentry-call").getValueAsString();
40  if (FEntryName != "true")
41  return false;
42 
43  auto &FirstMBB = *MF.begin();
44  auto *TII = MF.getSubtarget().getInstrInfo();
45  BuildMI(FirstMBB, FirstMBB.begin(), DebugLoc(),
46  TII->get(TargetOpcode::FENTRY_CALL));
47  return true;
48 }
49 
50 char FEntryInserter::ID = 0;
52 INITIALIZE_PASS(FEntryInserter, "fentry-insert", "Insert fentry calls", false,
53  false)
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
This class represents lattice values for constants.
Definition: AllocatorList.h:24
char & FEntryInserterID
This pass inserts FEntry calls.
A debug info location.
Definition: DebugLoc.h:34
F(f)
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
const HexagonInstrInfo * TII
virtual const TargetInstrInfo * getInstrInfo() const
void initializeFEntryInserterPass(PassRegistry &)
MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:34
Module.h This file contains the declarations for the Module class.
const Function & getFunction() const
Return the LLVM function that this machine code represents.
StringRef getValueAsString() const
Return the attribute's value as a string.
Definition: Attributes.cpp:195
Attribute getFnAttribute(Attribute::AttrKind Kind) const
Return the attribute for the given attribute kind.
Definition: Function.h:331