Home
last modified time | relevance | path

Searched refs:checkOpcode (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A Daarch32.cpp299 Entry->checkOpcode = checkOpcodeArm<K>; in initEntry()
301 Entry->checkOpcode = checkOpcodeThumb<K>; in initEntry()
313 static Error checkOpcode(LinkGraph &G, const ArmRelocation &R, in checkOpcode() function
319 assert(Info.checkOpcode && "Opcode check is mandatory for Arm edges"); in checkOpcode()
320 if (!Info.checkOpcode(R.Wd)) in checkOpcode()
326 static Error checkOpcode(LinkGraph &G, const ThumbRelocation &R, in checkOpcode() function
332 assert(Info.checkOpcode && "Opcode check is mandatory for Thumb edges"); in checkOpcode()
333 if (!Info.checkOpcode(R.Hi, R.Lo)) in checkOpcode()
412 if (Error Err = checkOpcode(G, R, Kind)) in readAddendArm()
435 if (Error Err = checkOpcode(G, R, Kind)) in readAddendThumb()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Daarch32.h183 bool (*checkOpcode)(uint32_t Wd) = nullptr; member
188 bool (*checkOpcode)(uint16_t Hi, uint16_t Lo) = nullptr; member