Home
last modified time | relevance | path

Searched defs:insn (Results 1 – 25 of 232) sorted by relevance

12345678910

/external/google-breakpad/src/third_party/libdisasm/
Dx86_insn.c11 int x86_insn_is_valid( x86_insn_t *insn ) { in x86_insn_is_valid()
19 uint32_t x86_get_address( x86_insn_t *insn ) { in x86_get_address()
40 int32_t x86_get_rel_offset( x86_insn_t *insn ) { in x86_get_rel_offset()
57 x86_op_t * x86_get_branch_target( x86_insn_t *insn ) { in x86_get_branch_target()
71 x86_op_t * x86_get_imm( x86_insn_t *insn ) { in x86_get_imm()
92 unsigned char * x86_get_raw_imm( x86_insn_t *insn ) { in x86_get_raw_imm()
155 void x86_set_insn_addr( x86_insn_t *insn, uint32_t addr ) { in x86_set_insn_addr()
159 void x86_set_insn_offset( x86_insn_t *insn, unsigned int offset ){ in x86_set_insn_offset()
163 void x86_set_insn_function( x86_insn_t *insn, void * func ){ in x86_set_insn_function()
167 void x86_set_insn_block( x86_insn_t *insn, void * block ){ in x86_set_insn_block()
[all …]
Dx86_operand_list.c5 static void x86_oplist_append( x86_insn_t *insn, x86_oplist_t *op ) { in x86_oplist_append()
36 x86_op_t * x86_operand_new( x86_insn_t *insn ) { in x86_operand_new()
48 void x86_oplist_free( x86_insn_t *insn ) { in x86_oplist_free()
71 int x86_operand_foreach( x86_insn_t *insn, x86_operand_fn func, void *arg, in x86_operand_foreach()
149 static void count_operand( x86_op_t *op, x86_insn_t *insn, void *arg ) { in count_operand()
154 size_t x86_operand_count( x86_insn_t *insn, enum x86_op_foreach_type type ) { in x86_operand_count()
169 x86_op_t * x86_operand_1st( x86_insn_t *insn ) { in x86_operand_1st()
177 x86_op_t * x86_operand_2nd( x86_insn_t *insn ) { in x86_operand_2nd()
185 x86_op_t * x86_operand_3rd( x86_insn_t *insn ) { in x86_operand_3rd()
Dia32_insn.c56 static void ia32_stack_mod(x86_insn_t *insn) { in ia32_stack_mod()
169 static void ia32_handle_cpu( x86_insn_t *insn, unsigned int cpu ) { in ia32_handle_cpu()
176 static void ia32_handle_mnemtype(x86_insn_t *insn, unsigned int mnemtype) { in ia32_handle_mnemtype()
184 static void ia32_handle_notes(x86_insn_t *insn, unsigned int notes) { in ia32_handle_notes()
189 static void ia32_handle_eflags( x86_insn_t *insn, unsigned int eflags) { in ia32_handle_eflags()
216 static void ia32_handle_prefix( x86_insn_t *insn, unsigned int prefixes ) { in ia32_handle_prefix()
242 static void reg_32_to_16( x86_op_t *op, x86_insn_t *insn, void *arg ) { in reg_32_to_16()
253 static void handle_insn_metadata( x86_insn_t *insn, ia32_insn_t *raw_insn ) { in handle_insn_metadata()
262 ia32_insn_t *raw_insn, x86_insn_t *insn, in ia32_decode_insn()
540 ia32_insn_t *raw_insn, x86_insn_t * insn ) { in handle_insn_suffix()
[all …]
Dx86_disasm.c18 x86_insn_t *insn ){ in x86_disasm()
76 x86_insn_t insn; in x86_disasm_range() local
103 static inline int follow_insn_dest( x86_insn_t *insn ) { in follow_insn_dest()
111 static inline int insn_doesnt_return( x86_insn_t *insn ) { in insn_doesnt_return()
115 static int32_t internal_resolver( x86_op_t *op, x86_insn_t *insn ){ in internal_resolver()
131 x86_insn_t insn; in x86_disasm_forward() local
/external/igt-gpu-tools/assembler/
Dgen8_instruction.h257 static inline unsigned gen8_uip(struct gen8_instruction *insn) in gen8_uip()
261 static inline void gen8_set_uip(struct gen8_instruction *insn, unsigned uip) in gen8_set_uip()
265 static inline unsigned gen8_jip(struct gen8_instruction *insn) in gen8_jip()
269 static inline void gen8_set_jip(struct gen8_instruction *insn, unsigned jip) in gen8_set_jip()
275 static inline int gen8_src1_imm_d(struct gen8_instruction *insn) in gen8_src1_imm_d()
279 static inline unsigned gen8_src1_imm_ud(struct gen8_instruction *insn) in gen8_src1_imm_ud()
283 static inline float gen8_src1_imm_f(struct gen8_instruction *insn) in gen8_src1_imm_f()
324 gen8_bits(struct gen8_instruction *insn, unsigned high, unsigned low) in gen8_bits()
344 gen8_set_bits(struct gen8_instruction *insn, in gen8_set_bits()
Dbrw_eu_emit.c45 struct brw_instruction *insn, in guess_execution_size()
105 brw_set_dest(struct brw_compile *p, struct brw_instruction *insn, in brw_set_dest()
161 validate_reg(struct brw_instruction *insn, struct brw_reg reg) in validate_reg()
247 brw_set_src0(struct brw_compile *p, struct brw_instruction *insn, in brw_set_src0()
351 struct brw_instruction *insn, in brw_set_src1()
480 struct brw_instruction *insn, in brw_set_math_message()
537 struct brw_instruction *insn, in brw_set_ff_sync_message()
553 struct brw_instruction *insn, in brw_set_urb_message()
595 struct brw_instruction *insn, in brw_set_dp_write_message()
654 struct brw_instruction *insn, in brw_set_dp_read_message()
[all …]
/external/capstone/arch/X86/
DX86DisassemblerDecoder.c281 static int consumeByte(struct InternalInstruction *insn, uint8_t *byte) in consumeByte()
298 static int lookAtByte(struct InternalInstruction *insn, uint8_t *byte) in lookAtByte()
303 static void unconsumeByte(struct InternalInstruction *insn) in unconsumeByte()
413 static bool isPrefixAtLocation(struct InternalInstruction *insn, uint8_t prefix, in isPrefixAtLocation()
476 static int readPrefixes(struct InternalInstruction *insn) in readPrefixes()
929 static int readOpcode(struct InternalInstruction *insn) in readOpcode()
1090 struct InternalInstruction *insn, in getIDWithAttrMask()
1173 static int getID(struct InternalInstruction *insn) in getID()
1431 static int readSIB(struct InternalInstruction *insn) in readSIB()
1530 static int readDisplacement(struct InternalInstruction *insn) in readDisplacement()
[all …]
DX86Disassembler.c103 static bool translateSrcIndex(MCInst *mcInst, InternalInstruction *insn) in translateSrcIndex()
127 static bool translateDstIndex(MCInst *mcInst, InternalInstruction *insn) in translateDstIndex()
152 const OperandSpecifier *operand, InternalInstruction *insn) in translateImmediate()
451 static bool translateRMRegister(MCInst *mcInst, InternalInstruction *insn) in translateRMRegister()
489 static bool translateRMMemory(MCInst *mcInst, InternalInstruction *insn) in translateRMMemory()
682 InternalInstruction *insn) in translateRM()
761 …c bool translateOperand(MCInst *mcInst, const OperandSpecifier *operand, InternalInstruction *insn) in translateOperand()
812 static bool translateInstruction(MCInst *mcInst, InternalInstruction *insn) in translateInstruction()
931 InternalInstruction insn = {0}; in X86_getInstruction() local
/external/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.cpp197 static int consumeByte(struct InternalInstruction* insn, uint8_t* byte) { in consumeByte()
213 static int lookAtByte(struct InternalInstruction* insn, uint8_t* byte) { in lookAtByte()
217 static void unconsumeByte(struct InternalInstruction* insn) { in unconsumeByte()
289 static void setPrefixPresent(struct InternalInstruction* insn, in setPrefixPresent()
306 static bool isPrefixAtLocation(struct InternalInstruction* insn, in isPrefixAtLocation()
323 static int readPrefixes(struct InternalInstruction* insn) { in readPrefixes()
676 static int readOpcode(struct InternalInstruction* insn) { in readOpcode()
793 struct InternalInstruction* insn, in getIDWithAttrMask()
873 static int getID(struct InternalInstruction* insn, const void *miiArg) { in getID()
1176 static int readSIB(struct InternalInstruction* insn) { in readSIB()
[all …]
/external/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
DEmulateInstructionMIPS64.cpp1077 bool EmulateInstructionMIPS64::Emulate_DADDiu(llvm::MCInst &insn) { in Emulate_DADDiu()
1141 bool EmulateInstructionMIPS64::Emulate_SD(llvm::MCInst &insn) { in Emulate_SD()
1198 bool EmulateInstructionMIPS64::Emulate_LD(llvm::MCInst &insn) { in Emulate_LD()
1244 bool EmulateInstructionMIPS64::Emulate_LUI(llvm::MCInst &insn) { in Emulate_LUI()
1261 bool EmulateInstructionMIPS64::Emulate_DSUBU_DADDU(llvm::MCInst &insn) { in Emulate_DSUBU_DADDU()
1344 bool EmulateInstructionMIPS64::Emulate_BXX_3ops(llvm::MCInst &insn) { in Emulate_BXX_3ops()
1395 bool EmulateInstructionMIPS64::Emulate_Bcond_Link(llvm::MCInst &insn) { in Emulate_Bcond_Link()
1440 bool EmulateInstructionMIPS64::Emulate_BAL(llvm::MCInst &insn) { in Emulate_BAL()
1471 bool EmulateInstructionMIPS64::Emulate_BALC(llvm::MCInst &insn) { in Emulate_BALC()
1506 bool EmulateInstructionMIPS64::Emulate_Bcond_Link_C(llvm::MCInst &insn) { in Emulate_Bcond_Link_C()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_lowering_helper.cpp30 LoweringHelper::visit(Instruction *insn) in visit()
59 LoweringHelper::handleABS(Instruction *insn) in handleABS()
83 LoweringHelper::handleCVT(Instruction *insn) in handleCVT()
113 LoweringHelper::handleMAXMIN(Instruction *insn) in handleMAXMIN()
149 LoweringHelper::handleMOV(Instruction *insn) in handleMOV()
177 LoweringHelper::handleNEG(Instruction *insn) in handleNEG()
191 LoweringHelper::handleSAT(Instruction *insn) in handleSAT()
208 LoweringHelper::handleSLCT(CmpInstruction *insn) in handleSLCT()
242 LoweringHelper::handleLogOp(Instruction *insn) in handleLogOp()
Dnv50_ir_emit_gm107.cpp50 const Instruction *insn; member in nv50_ir::CodeEmitterGM107
530 const FlowInstruction *insn = this->insn->asFlow(); in emitBRA() local
567 const FlowInstruction *insn = this->insn->asFlow(); in emitCAL() local
596 const FlowInstruction *insn = this->insn->asFlow(); in emitPCNT() local
618 const FlowInstruction *insn = this->insn->asFlow(); in emitPBK() local
640 const FlowInstruction *insn = this->insn->asFlow(); in emitPRET() local
662 const FlowInstruction *insn = this->insn->asFlow(); in emitSSY() local
1181 const CmpInstruction *insn = this->insn->asCmp(); in emitDSET() local
1229 const CmpInstruction *insn = this->insn->asCmp(); in emitDSETP() local
1522 const CmpInstruction *insn = this->insn->asCmp(); in emitFCMP() local
[all …]
Dnv50_ir_emit_gv100.cpp161 const FlowInstruction *insn = this->insn->asFlow(); in emitBRA() local
473 const CmpInstruction *insn = this->insn->asCmp(); in emitFSET_BF() local
498 const CmpInstruction *insn = this->insn->asCmp(); in emitFSETP() local
599 const CmpInstruction *insn = this->insn->asCmp(); in emitDSETP() local
695 const CmpInstruction *insn = this->insn->asCmp(); in emitISETP() local
1158 const TexInstruction *insn = this->insn->asTex(); in emitTEX() local
1202 const TexInstruction *insn = this->insn->asTex(); in emitTLD() local
1230 const TexInstruction *insn = this->insn->asTex(); in emitTLD4() local
1267 const TexInstruction *insn = this->insn->asTex(); in emitTMML() local
1292 const TexInstruction *insn = this->insn->asTex(); in emitTXD() local
[all …]
/external/llvm-project/lldb/source/Plugins/Instruction/MIPS/
DEmulateInstructionMIPS.cpp1183 bool EmulateInstructionMIPS::Emulate_ADDiu(llvm::MCInst &insn) { in Emulate_ADDiu()
1235 bool EmulateInstructionMIPS::Emulate_SW(llvm::MCInst &insn) { in Emulate_SW()
1299 bool EmulateInstructionMIPS::Emulate_LW(llvm::MCInst &insn) { in Emulate_LW()
1346 bool EmulateInstructionMIPS::Emulate_SUBU_ADDU(llvm::MCInst &insn) { in Emulate_SUBU_ADDU()
1424 bool EmulateInstructionMIPS::Emulate_LUI(llvm::MCInst &insn) { in Emulate_LUI()
1441 bool EmulateInstructionMIPS::Emulate_ADDIUSP(llvm::MCInst &insn) { in Emulate_ADDIUSP()
1467 bool EmulateInstructionMIPS::Emulate_ADDIUS5(llvm::MCInst &insn) { in Emulate_ADDIUS5()
1500 bool EmulateInstructionMIPS::Emulate_SWSP(llvm::MCInst &insn) { in Emulate_SWSP()
1565 bool EmulateInstructionMIPS::Emulate_SWM16_32(llvm::MCInst &insn) { in Emulate_SWM16_32()
1642 bool EmulateInstructionMIPS::Emulate_LWSP(llvm::MCInst &insn) { in Emulate_LWSP()
[all …]
/external/capstone/contrib/objdump/
Dobjdump-m68k.py46 def dump_op_reg(insn, op_reg): argument
108 def dump_op_ea(insn, op): argument
298 def debug(insn, op): argument
303 def dump_ops(insn): argument
353 def is_branch(insn): argument
358 def dump_mnemonic(insn): argument
375 def print_insn_detail_np(insn): argument
/external/llvm-project/llvm/lib/Target/X86/Disassembler/
DX86Disassembler.cpp178 static bool peek(struct InternalInstruction *insn, uint8_t &byte) { in peek()
186 template <typename T> static bool consume(InternalInstruction *insn, T &ptr) { in consume()
199 static bool isREX(struct InternalInstruction *insn, uint8_t prefix) { in isREX()
208 static int readPrefixes(struct InternalInstruction *insn) { in readPrefixes()
507 static int readSIB(struct InternalInstruction *insn) { in readSIB()
569 static int readDisplacement(struct InternalInstruction *insn) { in readDisplacement()
600 static int readModRM(struct InternalInstruction *insn) { in readModRM()
835 static int fixupReg(struct InternalInstruction *insn, in fixupReg()
872 static bool readOpcode(struct InternalInstruction *insn) { in readOpcode()
1016 struct InternalInstruction *insn, in getInstructionIDWithAttrMask()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/
DX86Disassembler.cpp178 static bool peek(struct InternalInstruction *insn, uint8_t &byte) { in peek()
186 template <typename T> static bool consume(InternalInstruction *insn, T &ptr) { in consume()
199 static bool isREX(struct InternalInstruction *insn, uint8_t prefix) { in isREX()
208 static int readPrefixes(struct InternalInstruction *insn) { in readPrefixes()
507 static int readSIB(struct InternalInstruction *insn) { in readSIB()
569 static int readDisplacement(struct InternalInstruction *insn) { in readDisplacement()
600 static int readModRM(struct InternalInstruction *insn) { in readModRM()
831 static int fixupReg(struct InternalInstruction *insn, in fixupReg()
867 static bool readOpcode(struct InternalInstruction *insn) { in readOpcode()
1011 struct InternalInstruction *insn, in getInstructionIDWithAttrMask()
[all …]
/external/capstone/bindings/vb6/
DvbCapstone.cpp55 …csh handle, const uint8_t *code, size_t code_size, uint64_t address, size_t count, cs_insn **insn){ in bs_disasm()
60 void __stdcall getInstruction(cs_insn *insn, uint32_t index, void* curInst, uint32_t bufSize){ in getInstruction()
70 void __stdcall bs_free(cs_insn *insn, size_t count){ in bs_free()
81 int __stdcall bs_op_index(csh handle, const cs_insn *insn, unsigned int op_type, unsigned int posit… in bs_op_index()
86 int __stdcall bs_op_count(csh handle, const cs_insn *insn, unsigned int op_type){ in bs_op_count()
91 bool __stdcall bs_reg_write(csh handle, const cs_insn *insn, unsigned int reg_id){ in bs_reg_write()
96 bool __stdcall bs_reg_read(csh handle, const cs_insn *insn, unsigned int reg_id){ in bs_reg_read()
101 bool __stdcall bs_insn_group(csh handle, const cs_insn *insn, unsigned int group_id){ in bs_insn_group()
116 …l bs_disasm_iter(csh handle, const uint8_t **code, size_t *size, uint64_t *address, cs_insn *insn){ in bs_disasm_iter()
/external/llvm-project/llvm/lib/Target/VE/Disassembler/
DVEDisassembler.cpp307 static DecodeStatus DecodeASX(MCInst &MI, uint64_t insn, uint64_t Address, in DecodeASX()
340 static DecodeStatus DecodeAS(MCInst &MI, uint64_t insn, uint64_t Address, in DecodeAS()
362 static DecodeStatus DecodeMem(MCInst &MI, uint64_t insn, uint64_t Address, in DecodeMem()
386 static DecodeStatus DecodeMemAS(MCInst &MI, uint64_t insn, uint64_t Address, in DecodeMemAS()
410 static DecodeStatus DecodeLoadI32(MCInst &Inst, uint64_t insn, uint64_t Address, in DecodeLoadI32()
415 static DecodeStatus DecodeStoreI32(MCInst &Inst, uint64_t insn, in DecodeStoreI32()
420 static DecodeStatus DecodeLoadI64(MCInst &Inst, uint64_t insn, uint64_t Address, in DecodeLoadI64()
425 static DecodeStatus DecodeStoreI64(MCInst &Inst, uint64_t insn, in DecodeStoreI64()
430 static DecodeStatus DecodeLoadF32(MCInst &Inst, uint64_t insn, uint64_t Address, in DecodeLoadF32()
435 static DecodeStatus DecodeStoreF32(MCInst &Inst, uint64_t insn, in DecodeStoreF32()
[all …]
/external/capstone/arch/Sparc/
DSparcDisassembler.c249 static DecodeStatus DecodeMem(MCInst *MI, unsigned insn, uint64_t Address, in DecodeMem()
294 static DecodeStatus DecodeLoadInt(MCInst *Inst, unsigned insn, uint64_t Address, in DecodeLoadInt()
301 static DecodeStatus DecodeLoadFP(MCInst *Inst, unsigned insn, uint64_t Address, in DecodeLoadFP()
308 static DecodeStatus DecodeLoadDFP(MCInst *Inst, unsigned insn, uint64_t Address, in DecodeLoadDFP()
315 static DecodeStatus DecodeLoadQFP(MCInst *Inst, unsigned insn, uint64_t Address, in DecodeLoadQFP()
322 static DecodeStatus DecodeStoreInt(MCInst *Inst, unsigned insn, in DecodeStoreInt()
329 static DecodeStatus DecodeStoreFP(MCInst *Inst, unsigned insn, uint64_t Address, in DecodeStoreFP()
336 static DecodeStatus DecodeStoreDFP(MCInst *Inst, unsigned insn, in DecodeStoreDFP()
343 static DecodeStatus DecodeStoreQFP(MCInst *Inst, unsigned insn, in DecodeStoreQFP()
350 static DecodeStatus DecodeCall(MCInst *MI, unsigned insn, in DecodeCall()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/Disassembler/
DSparcDisassembler.cpp370 static DecodeStatus DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, in DecodeMem()
417 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadInt()
423 static DecodeStatus DecodeLoadIntPair(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadIntPair()
429 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadFP()
435 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadDFP()
441 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadQFP()
447 static DecodeStatus DecodeLoadCP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadCP()
453 static DecodeStatus DecodeLoadCPPair(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadCPPair()
459 static DecodeStatus DecodeStoreInt(MCInst &Inst, unsigned insn, in DecodeStoreInt()
465 static DecodeStatus DecodeStoreIntPair(MCInst &Inst, unsigned insn, in DecodeStoreIntPair()
[all …]
/external/llvm-project/llvm/lib/Target/Sparc/Disassembler/
DSparcDisassembler.cpp370 static DecodeStatus DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, in DecodeMem()
417 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadInt()
423 static DecodeStatus DecodeLoadIntPair(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadIntPair()
429 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadFP()
435 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadDFP()
441 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadQFP()
447 static DecodeStatus DecodeLoadCP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadCP()
453 static DecodeStatus DecodeLoadCPPair(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadCPPair()
459 static DecodeStatus DecodeStoreInt(MCInst &Inst, unsigned insn, in DecodeStoreInt()
465 static DecodeStatus DecodeStoreIntPair(MCInst &Inst, unsigned insn, in DecodeStoreIntPair()
[all …]
/external/llvm/lib/Target/Sparc/Disassembler/
DSparcDisassembler.cpp378 static DecodeStatus DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, in DecodeMem()
425 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadInt()
431 static DecodeStatus DecodeLoadIntPair(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadIntPair()
437 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadFP()
443 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadDFP()
449 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadQFP()
455 static DecodeStatus DecodeLoadCP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadCP()
461 static DecodeStatus DecodeLoadCPPair(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadCPPair()
467 static DecodeStatus DecodeStoreInt(MCInst &Inst, unsigned insn, in DecodeStoreInt()
473 static DecodeStatus DecodeStoreIntPair(MCInst &Inst, unsigned insn, in DecodeStoreIntPair()
[all …]
/external/swiftshader/src/Pipeline/
DSpirvShaderControlFlow.cpp357 for(auto insn = block.begin(); insn != block.mergeInstruction; insn++) in EmitLoop() local
395 for(auto insn = block.begin(); insn != block.end(); insn++) in EmitLoop() local
440 for(auto insn = block.begin(); insn != block.mergeInstruction; insn++) in EmitLoop() local
474 for(auto insn = mergeBlock.begin(); insn != mergeBlock.end(); insn++) in EmitLoop() local
496 SpirvShader::EmitResult SpirvShader::EmitBranch(InsnIterator insn, EmitState *state) const in EmitBranch()
503 SpirvShader::EmitResult SpirvShader::EmitBranchConditional(InsnIterator insn, EmitState *state) con… in EmitBranchConditional()
524 SpirvShader::EmitResult SpirvShader::EmitSwitch(InsnIterator insn, EmitState *state) const in EmitSwitch()
562 SpirvShader::EmitResult SpirvShader::EmitUnreachable(InsnIterator insn, EmitState *state) const in EmitUnreachable()
569 SpirvShader::EmitResult SpirvShader::EmitReturn(InsnIterator insn, EmitState *state) const in EmitReturn()
575 SpirvShader::EmitResult SpirvShader::EmitKill(InsnIterator insn, EmitState *state) const in EmitKill()
[all …]
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_insn.c88 const struct tgsi_full_instruction *insn, in translate_dst_register()
1029 const struct tgsi_full_instruction *insn) in emit_fake_arl()
1055 const struct tgsi_full_instruction *insn) in emit_if()
1086 const struct tgsi_full_instruction *insn) in emit_else()
1094 const struct tgsi_full_instruction *insn) in emit_endif()
1111 const struct tgsi_full_instruction *insn ) in emit_floor()
1140 const struct tgsi_full_instruction *insn) in emit_ceil()
1169 const struct tgsi_full_instruction *insn ) in emit_div()
1213 const struct tgsi_full_instruction *insn ) in emit_dp2()
1259 const struct tgsi_full_instruction *insn ) in emit_sin()
[all …]

12345678910