aboutsummaryrefslogtreecommitdiff
path: root/source/fuzz/transformation_function_call.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/fuzz/transformation_function_call.cpp')
-rw-r--r--source/fuzz/transformation_function_call.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/fuzz/transformation_function_call.cpp b/source/fuzz/transformation_function_call.cpp
index e96a230c..0f88ce51 100644
--- a/source/fuzz/transformation_function_call.cpp
+++ b/source/fuzz/transformation_function_call.cpp
@@ -49,7 +49,7 @@ bool TransformationFunctionCall::IsApplicable(
// The function must exist
auto callee_inst =
ir_context->get_def_use_mgr()->GetDef(message_.callee_id());
- if (!callee_inst || callee_inst->opcode() != spv::Op::OpFunction) {
+ if (!callee_inst || callee_inst->opcode() != SpvOpFunction) {
return false;
}
@@ -60,7 +60,7 @@ bool TransformationFunctionCall::IsApplicable(
auto callee_type_inst = ir_context->get_def_use_mgr()->GetDef(
callee_inst->GetSingleWordInOperand(1));
- assert(callee_type_inst->opcode() == spv::Op::OpTypeFunction &&
+ assert(callee_type_inst->opcode() == SpvOpTypeFunction &&
"Bad function type.");
// The number of expected function arguments must match the number of given
@@ -78,7 +78,7 @@ bool TransformationFunctionCall::IsApplicable(
if (!insert_before) {
return false;
}
- if (!fuzzerutil::CanInsertOpcodeBeforeInstruction(spv::Op::OpFunctionCall,
+ if (!fuzzerutil::CanInsertOpcodeBeforeInstruction(SpvOpFunctionCall,
insert_before)) {
return false;
}
@@ -116,10 +116,10 @@ bool TransformationFunctionCall::IsApplicable(
}
opt::Instruction* arg_type_inst =
ir_context->get_def_use_mgr()->GetDef(arg_inst->type_id());
- if (arg_type_inst->opcode() == spv::Op::OpTypePointer) {
+ if (arg_type_inst->opcode() == SpvOpTypePointer) {
switch (arg_inst->opcode()) {
- case spv::Op::OpFunctionParameter:
- case spv::Op::OpVariable:
+ case SpvOpFunctionParameter:
+ case SpvOpVariable:
// These are OK
break;
default:
@@ -173,7 +173,7 @@ void TransformationFunctionCall::Apply(
// Insert the function call before the instruction specified in the message.
FindInstruction(message_.instruction_to_insert_before(), ir_context)
->InsertBefore(MakeUnique<opt::Instruction>(
- ir_context, spv::Op::OpFunctionCall, return_type, message_.fresh_id(),
+ ir_context, SpvOpFunctionCall, return_type, message_.fresh_id(),
operands));
// Invalidate all analyses since we have changed the module.
ir_context->InvalidateAnalysesExceptFor(opt::IRContext::kAnalysisNone);