Home
last modified time | relevance | path

Searched refs:instruction_index (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
Dtransformation_add_function.cpp252 uint32_t instruction_index = 1; in TryToAddFunction() local
258 while (instruction_index < num_instructions && in TryToAddFunction()
259 message_.instruction(instruction_index).opcode() == in TryToAddFunction()
262 ir_context, message_.instruction(instruction_index))); in TryToAddFunction()
263 instruction_index++; in TryToAddFunction()
267 if (instruction_index == num_instructions || in TryToAddFunction()
268 message_.instruction(instruction_index).opcode() != SpvOpLabel) { in TryToAddFunction()
274 while (instruction_index < num_instructions && in TryToAddFunction()
275 message_.instruction(instruction_index).opcode() != SpvOpFunctionEnd) { in TryToAddFunction()
277 assert(message_.instruction(instruction_index).opcode() == SpvOpLabel); in TryToAddFunction()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dtransformation_add_function.cpp252 uint32_t instruction_index = 1; in TryToAddFunction() local
258 while (instruction_index < num_instructions && in TryToAddFunction()
259 message_.instruction(instruction_index).opcode() == in TryToAddFunction()
262 ir_context, message_.instruction(instruction_index))); in TryToAddFunction()
263 instruction_index++; in TryToAddFunction()
267 if (instruction_index == num_instructions || in TryToAddFunction()
268 message_.instruction(instruction_index).opcode() != SpvOpLabel) { in TryToAddFunction()
274 while (instruction_index < num_instructions && in TryToAddFunction()
275 message_.instruction(instruction_index).opcode() != SpvOpFunctionEnd) { in TryToAddFunction()
277 assert(message_.instruction(instruction_index).opcode() == SpvOpLabel); in TryToAddFunction()
[all …]
/third_party/spirv-tools/source/fuzz/
Dtransformation_add_function.cpp252 uint32_t instruction_index = 1; in TryToAddFunction() local
258 while (instruction_index < num_instructions && in TryToAddFunction()
259 message_.instruction(instruction_index).opcode() == in TryToAddFunction()
262 ir_context, message_.instruction(instruction_index))); in TryToAddFunction()
263 instruction_index++; in TryToAddFunction()
267 if (instruction_index == num_instructions || in TryToAddFunction()
268 message_.instruction(instruction_index).opcode() != SpvOpLabel) { in TryToAddFunction()
274 while (instruction_index < num_instructions && in TryToAddFunction()
275 message_.instruction(instruction_index).opcode() != SpvOpFunctionEnd) { in TryToAddFunction()
277 assert(message_.instruction(instruction_index).opcode() == SpvOpLabel); in TryToAddFunction()
[all …]
/third_party/node/deps/v8/src/compiler/backend/
Dcode-generator.cc700 int instruction_index, const InstructionBlock* block) { in AssembleInstruction() argument
701 Instruction* instr = instructions()->InstructionAt(instruction_index); in AssembleInstruction()
703 instr_starts_[instruction_index].gap_pc_offset = tasm()->pc_offset(); in AssembleInstruction()
723 instr_starts_[instruction_index].arch_instr_pc_offset = tasm()->pc_offset(); in AssembleInstruction()
730 instr_starts_[instruction_index].condition_pc_offset = tasm()->pc_offset(); in AssembleInstruction()
Dcode-generator.h220 CodeGenResult AssembleInstruction(int instruction_index,
Dinstruction.cc921 int instruction_index) const { in GetInstructionBlock()
922 return instructions()[instruction_index]->block(); in GetInstructionBlock()
Dregister-allocator.cc2621 int instruction_index = start.ToInstructionIndex(); in IntervalStartsAtBlockBoundary() local
2623 data()->code()->GetInstructionBlock(instruction_index); in IntervalStartsAtBlockBoundary()
2624 return block->first_instruction_index() == instruction_index; in IntervalStartsAtBlockBoundary()
2630 int instruction_index = start.ToInstructionIndex(); in IntervalPredecessorsCoveredByRange() local
2632 data()->code()->GetInstructionBlock(instruction_index); in IntervalPredecessorsCoveredByRange()
2804 const LiveRange* range, int instruction_index) { in GetSplitPositionForInstruction() argument
2807 ret = LifetimePosition::GapFromInstructionIndex(instruction_index); in GetSplitPositionForInstruction()
Dregister-allocator.h1319 int instruction_index);
Dinstruction.h1683 InstructionBlock* GetInstructionBlock(int instruction_index) const; in NON_EXPORTED_BASE()