HomeSort by relevance Sort by last modified time
    Searched full:opcode (Results 976 - 1000 of 2817) sorted by null

<<31323334353637383940>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 297 struct match_info Opcode;
334 tokens.Opcode.String = inst_str + matches[1].rm_so;
335 tokens.Opcode.Length = match_length(matches, 1);
347 if (strncmp(tokens.Opcode.String, info->Name, tokens.Opcode.Length)) {
350 inst->U.I.Opcode = info->Opcode;
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 32 static unsigned translate_opcode(unsigned opcode)
34 switch(opcode) {
143 fprintf(stderr, "r300: Unknown TGSI/RC opcode: %s\n", tgsi_get_opcode_name(opcode));
277 dst->U.I.Opcode = translate_opcode(src->Instruction.Opcode);
372 if (inst->Instruction.Opcode == TGSI_OPCODE_END) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_copy_propagation.cpp 42 return (inst->opcode == BRW_OPCODE_MOV &&
54 return (inst->opcode != BRW_OPCODE_DO &&
55 inst->opcode != BRW_OPCODE_WHILE &&
56 inst->opcode != BRW_OPCODE_ELSE &&
57 inst->opcode != BRW_OPCODE_ENDIF);
93 switch (inst->opcode) {
107 if (inst->opcode == BRW_OPCODE_MUL &&
brw_fs_schedule_instructions.cpp 71 switch (inst->opcode) {
341 inst->opcode == FS_OPCODE_MOV_DISPATCH_TO_FLAGS) {
424 inst->opcode == FS_OPCODE_MOV_DISPATCH_TO_FLAGS) {
515 if (inst->opcode == BRW_OPCODE_IF ||
516 inst->opcode == BRW_OPCODE_ELSE ||
517 inst->opcode == BRW_OPCODE_ENDIF ||
518 inst->opcode == BRW_OPCODE_DO ||
519 inst->opcode == BRW_OPCODE_WHILE ||
520 inst->opcode == BRW_OPCODE_BREAK ||
521 inst->opcode == BRW_OPCODE_CONTINUE)
    [all...]
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 254 byte opcode = variableInstruction.opcode;
255 if (opcode == InstructionConstants.OP_RET)
304 byte opcode = branchInstruction.opcode;
305 if (opcode == InstructionConstants.OP_JSR ||
306 opcode == InstructionConstants.OP_JSR_W)
  /art/compiler/dex/quick/mips/
target_mips.cc 127 uint64_t flags = MipsMir2Lir::EncodingMap[lir->opcode].flags;
542 return (lir->opcode == kMipsB);
548 if (MipsMir2Lir::EncodingMap[i].opcode != i) {
551 << static_cast<int>(MipsMir2Lir::EncodingMap[i].opcode);
561 uint64_t MipsMir2Lir::GetTargetInstFlags(int opcode) {
562 return MipsMir2Lir::EncodingMap[opcode].flags;
565 const char* MipsMir2Lir::GetTargetInstName(int opcode) {
566 return MipsMir2Lir::EncodingMap[opcode].name;
569 const char* MipsMir2Lir::GetTargetInstFmt(int opcode) {
570 return MipsMir2Lir::EncodingMap[opcode].fmt
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 44 * middle of an instruction or is a definitely-dead opcode
122 public void visitInvalid(int opcode, int offset, int length) {
127 public void visitNoArgs(int opcode, int offset, int length, Type type) {
128 switch (opcode) {
187 public void visitLocal(int opcode, int offset, int length,
189 if (opcode == ByteOps.RET) {
198 public void visitConstant(int opcode, int offset, int length,
215 public void visitBranch(int opcode, int offset, int length,
217 switch (opcode) {
246 public void visitSwitch(int opcode, int offset, int length
    [all...]
Machine.java 207 * "Runs" the indicated opcode in an appropriate way, using the arguments
211 * @param offset {@code >= 0;} byte offset in the method to the opcode being
213 * @param opcode {@code >= 0;} the opcode to run
215 public void run(Frame frame, int offset, int opcode);
  /dalvik/vm/compiler/template/
gen-template.py 25 interp_defs_file = "TemplateOpList.h" # need opcode list
104 # Start of opcode list.
118 # Set location of a single opcode's source file.
129 raise DataParseError("unknown opcode %s" % tokens[1])
134 # End of opcode list; emit instruction blocks.
199 dict.update({ "opcode":op, "opnum":opindex })
215 # underscore so the symbol name doesn't clash with the Opcode enum.
216 template_name = "dvmCompiler_%(opcode)s" % dict
286 sister_list.append("\n/* continuation for %(opcode)s */\n"%dict)
338 # Extract opcode list
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 71 switch (inst->opcode) {
341 inst->opcode == FS_OPCODE_MOV_DISPATCH_TO_FLAGS) {
424 inst->opcode == FS_OPCODE_MOV_DISPATCH_TO_FLAGS) {
515 if (inst->opcode == BRW_OPCODE_IF ||
516 inst->opcode == BRW_OPCODE_ELSE ||
517 inst->opcode == BRW_OPCODE_ENDIF ||
518 inst->opcode == BRW_OPCODE_DO ||
519 inst->opcode == BRW_OPCODE_WHILE ||
520 inst->opcode == BRW_OPCODE_BREAK ||
521 inst->opcode == BRW_OPCODE_CONTINUE)
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 305 enum Opcode {
313 Opcode Op;
316 MCUnaryExpr(Opcode _Op, const MCExpr *_Expr)
323 static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
343 Opcode getOpcode() const { return Op; }
358 enum Opcode {
384 Opcode Op;
387 MCBinaryExpr(Opcode _Op, const MCExpr *_LHS, const MCExpr *_RHS)
394 static const MCBinaryExpr *Create(Opcode Op, const MCExpr *LHS,
474 Opcode getOpcode() const { return Op;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 284 unsigned Reloc = (MCID.Opcode == ARM::MOVi16 ?
364 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
433 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
875 unsigned Opcode = MI.getDesc().Opcode;
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCCodeEmitter.cpp 150 int Opcode = InstIn.getOpcode();
152 if (Opcode == Mips::DEXT)
169 InstIn.setOpcode((Opcode == Mips::DEXT) ? Mips::DEXTU : Mips::DINSU);
175 InstIn.setOpcode((Opcode == Mips::DEXT) ? Mips::DEXTM : Mips::DINSM);
209 unsigned Opcode = TmpInst.getOpcode();
210 if ((Opcode != Mips::NOP) && (Opcode != Mips::SLL) && !Binary)
211 llvm_unreachable("unimplemented opcode in EncodeInstruction()");
214 int NewOpcode = Mips::Std2MicroMips (Opcode, Mips::Arch_micromips);
216 Opcode = NewOpcode
    [all...]
  /dalvik/vm/compiler/
Compiler.h 69 #define SINGLE_STEP_OP(opcode) \
71 ((gDvmJit.opList[opcode >> 3] & (1 << (opcode & 0x7))) != 0))
251 bool dvmIsOpcodeSupportedByJit(Opcode opcode);
  /development/ndk/platforms/android-3/include/linux/
coda.h 203 #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
213 u_int32_t opcode; member in struct:coda_in_hdr
221 u_int32_t opcode; member in struct:coda_out_hdr
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_llvm.c 175 unsigned opcode = emit_data->inst->Instruction.Opcode; local
176 unsigned dp_components = (opcode == TGSI_OPCODE_DP2 ? 2 :
177 (opcode == TGSI_OPCODE_DP3 ? 3 : 4));
191 if (opcode == TGSI_OPCODE_DPH) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi_emit.h 140 unsigned opcode );
174 SVGA3dShaderInstToken opcode )
176 return svga_shader_emit_opcode( emit, opcode.value );
249 inst_token( unsigned opcode )
254 inst.op = opcode;
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86masm.pl 14 { my ($opcode,@arg)=@_;
19 if ($opcode =~ /lea/ && @arg[1] =~ s/.*PTR\s+(\(.*\))$/OFFSET $1/) # no []
20 { $opcode="mov"; }
21 elsif ($opcode !~ /movq/)
27 &::emit($opcode,@arg);
  /external/mesa3d/src/gallium/drivers/r600/
r600_llvm.c 175 unsigned opcode = emit_data->inst->Instruction.Opcode; local
176 unsigned dp_components = (opcode == TGSI_OPCODE_DP2 ? 2 :
177 (opcode == TGSI_OPCODE_DP3 ? 3 : 4));
191 if (opcode == TGSI_OPCODE_DPH) {
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_emit.h 140 unsigned opcode );
174 SVGA3dShaderInstToken opcode )
176 return svga_shader_emit_opcode( emit, opcode.value );
249 inst_token( unsigned opcode )
254 inst.op = opcode;
  /external/openssl/crypto/perlasm/
x86masm.pl 14 { my ($opcode,@arg)=@_;
19 if ($opcode =~ /lea/ && @arg[1] =~ s/.*PTR\s+(\(.*\))$/OFFSET $1/) # no []
20 { $opcode="mov"; }
21 elsif ($opcode !~ /movq/)
27 &::emit($opcode,@arg);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
coda.h 203 #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
213 u_int32_t opcode; member in struct:coda_in_hdr
221 u_int32_t opcode; member in struct:coda_out_hdr
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
coda.h 203 #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
213 u_int32_t opcode; member in struct:coda_in_hdr
221 u_int32_t opcode; member in struct:coda_out_hdr
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
coda.h 203 #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
213 u_int32_t opcode; member in struct:coda_in_hdr
221 u_int32_t opcode; member in struct:coda_out_hdr
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
coda.h 203 #define DOWNCALL(opcode) (opcode >= CODA_REPLACE && opcode <= CODA_PURGEFID)
213 u_int32_t opcode; member in struct:coda_in_hdr
221 u_int32_t opcode; member in struct:coda_out_hdr

Completed in 944 milliseconds

<<31323334353637383940>>