Home
last modified time | relevance | path

Searched refs:newInstruction (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dstrength_reduction_pass.cpp103 std::unique_ptr<Instruction> newInstruction( in ReplaceMultiplyByPowerOf2() local
108 (*inst) = (*inst).InsertBefore(std::move(newInstruction)); in ReplaceMultiplyByPowerOf2()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dstrength_reduction_pass.cpp103 std::unique_ptr<Instruction> newInstruction( in ReplaceMultiplyByPowerOf2() local
108 (*inst) = (*inst).InsertBefore(std::move(newInstruction)); in ReplaceMultiplyByPowerOf2()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dstrength_reduction_pass.cpp103 std::unique_ptr<Instruction> newInstruction( in ReplaceMultiplyByPowerOf2() local
108 (*inst) = (*inst).InsertBefore(std::move(newInstruction)); in ReplaceMultiplyByPowerOf2()
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DArchHandler_arm.cpp374 uint32_t newInstruction = (instruction & 0xFF000000); in setDisplacementInArmBranch() local
378 newInstruction = 0xFA000000; in setDisplacementInArmBranch()
391 newInstruction = 0xEB000000; in setDisplacementInArmBranch()
393 newInstruction |= (h << 24) | ((displacement >> 2) & 0x00FFFFFF); in setDisplacementInArmBranch()
394 return newInstruction; in setDisplacementInArmBranch()
432 uint32_t newInstruction = (instruction & 0xD000F800); in setDisplacementInThumbBranch() local
435 newInstruction = 0xD000F000; // Use bl in setDisplacementInThumbBranch()
437 newInstruction = 0xC000F000; // Use blx in setDisplacementInThumbBranch()
458 newInstruction |= (nextDisp << 16) | firstDisp; in setDisplacementInThumbBranch()
459 return newInstruction; in setDisplacementInThumbBranch()