HomeSort by relevance Sort by last modified time
    Searched full:jumptable (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/llvm/test/Verifier/
jumptable.ll 3 define i32 @f() jumptable {
7 ; CHECK: Attribute 'jumptable' requires 'unnamed_addr'
  /external/clang/test/CodeGenCXX/
2003-12-08-ArrayOfPtrToMemberFunc.cpp 8 static memfunptr jumpTable[] = { &Evil::fun };
11 (this->*jumpTable[foo()]) ();
  /external/llvm/lib/Target/ARM/
README-Thumb2.txt 5 Make sure jumptable destinations are below the jumptable in order to make use
README-Thumb.txt 26 Potential jumptable improvements:
29 jumptable entries (e.g. (L1 - L2) >> 1). Or even smaller entries if the
32 * Thumb jumptable codegen can improve given some help from the assembler. This
  /external/llvm/test/CodeGen/MIR/Generic/
invalid-jump-table-kind.mir 33 jumpTable:
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 235 cl::opt<llvm::JumpTable::JumpTableType>
237 cl::desc("Choose the type of Jump-Instruction Table for jumptable."),
238 cl::init(JumpTable::Single),
240 clEnumValN(JumpTable::Single, "single",
241 "Create a single table for all jumptable functions"),
242 clEnumValN(JumpTable::Arity, "arity",
244 clEnumValN(JumpTable::Simplified, "simplified",
246 clEnumValN(JumpTable::Full, "full",
PseudoSourceValue.h 39 JumpTable,
65 bool isJumpTable() const { return Kind == JumpTable; }
  /external/llvm/test/CodeGen/MIR/X86/
jump-table-info.mir 60 # CHECK: jumpTable:
66 jumpTable:
109 jumpTable:
jump-table-redefinition-error.mir 33 jumpTable:
undefined-jump-table-id.mir 33 jumpTable:
  /external/llvm/include/llvm/IR/
Attributes.td 61 def JumpTable : EnumAttr<"jumptable">;
  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 27 "Stack", "GOT", "JumpTable", "ConstantPool", "FixedStack",
102 JumpTablePSV(PseudoSourceValue::JumpTable),
  /external/llvm/include/llvm/Target/
TargetOptions.h 43 namespace JumpTable {
45 Single, // Use a single table for all indirect jumptable calls.
106 JTType(JumpTable::Single), ThreadModel(ThreadModel::POSIX),
238 /// create for functions that have the jumptable attribute.
239 JumpTable::JumpTableType JTType;
  /external/v8/src/compiler/
code-generator.cc 17 class CodeGenerator::JumpTable final : public ZoneObject {
19 JumpTable(JumpTable* next, Label** targets, size_t target_count)
23 JumpTable* next() const { return next_; }
29 JumpTable* const next_;
199 for (JumpTable* table = jump_tables_; table; table = table->next()) {
489 jump_tables_ = new (zone()) JumpTable(jump_tables_, targets, target_count);
code-generator.h 152 class JumpTable;
241 JumpTable* jump_tables_;
  /external/llvm/utils/
llvm.grm 360 | switch IntType ValueRef ^ "," label ValueRef "[" JumpTable "]"
368 JumpTable ::= JumpTable IntType ConstValueRef ^ "," label ValueRef
  /external/llvm/bindings/go/llvm/
ir_test.go 60 {JumpTableAttribute, "jumptable"},
  /external/llvm/test/CodeGen/X86/
2010-09-30-CMOV-JumpTable-PHI.ll 8 ; That causes the PHI to be updated wrong because the jumptable data structure is remembering the original MBB.
pr13209.ll 7 define zeroext i1 @pr13209(i8** %x, i8*** %jumpTable) nounwind {
  /external/libvpx/libvpx/vpx_dsp/x86/
sad_ssse3.asm 198 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable
311 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 72 // Jumptable branch.
75 // Jumptable branch using long branches for each entry.
  /external/llvm/test/Bitcode/
attributes.ll 227 define void @f38() unnamed_addr jumptable {
314 ; CHECK: attributes #24 = { jumptable }
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
sad_ssse3.asm 198 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable
311 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_sad_ssse3.asm 198 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable
311 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable
  /external/libchrome/sandbox/linux/bpf_dsl/
policy_compiler.cc 191 // Compile the system call ranges to an optimized BPF jumptable
192 CodeGen::Node jumptable = AssembleJumpTable(ranges.begin(), ranges.end()); local
197 BPF_LD + BPF_W + BPF_ABS, SECCOMP_NR_IDX, CheckSyscallNumber(jumptable));

Completed in 979 milliseconds

1 2 3 4