HomeSort by relevance Sort by last modified time
    Searched defs:InstrMeta (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/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());
135 const auto &InstrMeta = Analysis.getInstructionOrDie(Address);
144 printInstructionInformation(Analysis, InstrMeta, Graph, ProtectionStatus);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-cfi-verify/
FileAnalysis.cpp 116 const auto *InstrMeta = Analysis.getInstruction(0xDEADBEEF);
117 EXPECT_NE(nullptr, InstrMeta);
118 EXPECT_EQ(0xDEADBEEF, InstrMeta->VMAddress);
119 EXPECT_EQ(1u, InstrMeta->InstructionSize);
120 EXPECT_TRUE(InstrMeta->Valid);
122 const auto *NextInstrMeta = Analysis.getNextInstructionSequential(*InstrMeta);
123 EXPECT_EQ(nullptr, Analysis.getPrevInstructionSequential(*InstrMeta));
124 const auto *PrevInstrMeta = InstrMeta;
127 InstrMeta = Analysis.getInstruction(0xDEADBEEF + 1);
128 EXPECT_NE(nullptr, InstrMeta);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cfi-verify/lib/
FileAnalysis.cpp 119 FileAnalysis::getPrevInstructionSequential(const Instr &InstrMeta) const {
121 Instructions.find(InstrMeta.VMAddress);
132 FileAnalysis::getNextInstructionSequential(const Instr &InstrMeta) const {
134 Instructions.find(InstrMeta.VMAddress);
144 bool FileAnalysis::usesRegisterOperand(const Instr &InstrMeta) const {
145 for (const auto &Operand : InstrMeta.Instruction) {
166 bool FileAnalysis::isCFITrap(const Instr &InstrMeta) const {
167 const auto &InstrDesc = MII->get(InstrMeta.Instruction.getOpcode());
171 bool FileAnalysis::canFallThrough(const Instr &InstrMeta) const {
172 if (!InstrMeta.Valid
    [all...]

Completed in 71 milliseconds