HomeSort by: relevance | last modified time | path
    Searched defs:InstrMeta (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/
llvm-cfi-verify.cpp 88 const Instr &InstrMeta,
91 outs() << "Instruction: " << format_hex(InstrMeta.VMAddress, 2) << " ("
93 Analysis.printInstruction(InstrMeta, outs());
136 const auto &InstrMeta = Analysis.getInstructionOrDie(Address.Address);
145 printInstructionInformation(Analysis, InstrMeta, Graph, ProtectionStatus);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/
FileAnalysis.cpp 122 FileAnalysis::getPrevInstructionSequential(const Instr &InstrMeta) const {
124 Instructions.find(InstrMeta.VMAddress);
135 FileAnalysis::getNextInstructionSequential(const Instr &InstrMeta) const {
137 Instructions.find(InstrMeta.VMAddress);
147 bool FileAnalysis::usesRegisterOperand(const Instr &InstrMeta) const {
148 for (const auto &Operand : InstrMeta.Instruction) {
169 bool FileAnalysis::isCFITrap(const Instr &InstrMeta) const {
170 const auto &InstrDesc = MII->get(InstrMeta.Instruction.getOpcode());
171 return InstrDesc.isTrap() || willTrapOnCFIViolation(InstrMeta);
174 bool FileAnalysis::willTrapOnCFIViolation(const Instr &InstrMeta) const
    [all...]

Completed in 78 milliseconds