Searched refs:checkOpcode (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | aarch32.cpp | 301 Entry->checkOpcode = checkOpcodeArm<K>; in initEntry() 303 Entry->checkOpcode = checkOpcodeThumb<K>; in initEntry() 315 static Error checkOpcode(LinkGraph &G, const ArmRelocation &R, in checkOpcode() function 321 assert(Info.checkOpcode && "Opcode check is mandatory for Arm edges"); in checkOpcode() 322 if (!Info.checkOpcode(R.Wd)) in checkOpcode() 328 static Error checkOpcode(LinkGraph &G, const ThumbRelocation &R, in checkOpcode() function 334 assert(Info.checkOpcode && "Opcode check is mandatory for Thumb edges"); in checkOpcode() 335 if (!Info.checkOpcode(R.Hi, R.Lo)) in checkOpcode() 414 if (Error Err = checkOpcode(G, R, Kind)) in readAddendArm() 437 if (Error Err = checkOpcode(G, R, Kind)) in readAddendThumb() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | aarch32.h | 182 bool (*checkOpcode)(uint32_t Wd) = nullptr; member 187 bool (*checkOpcode)(uint16_t Hi, uint16_t Lo) = nullptr; member
|