HomeSort by relevance Sort by last modified time
    Searched defs:JumpTable (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 39 JumpTable,
65 bool isJumpTable() const { return Kind == JumpTable; }
ISDOpcodes.h 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress,
557 /// BR_JT - Jumptable branch. The first operand is the chain, the second
558 /// is the jumptable index, the last one is the jumptable entry index.
    [all...]
  /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_;
172 for (JumpTable* table = jump_tables_; table; table = table->next()) {
416 jump_tables_ = new (zone()) JumpTable(jump_tables_, targets, target_count);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 170 static CaseCluster jumpTable(const ConstantInt *Low,
246 struct JumpTable {
247 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M,
271 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock;
582 /// JTCases - Vector of JumpTable structures used to communicate
764 void visitJumpTable(JumpTable &JT);
765 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 800 auto JumpTable = new GlobalVariable(*M, JumpTableType,
803 JumpTable->setSection(ObjectFormat == Triple::MachO
806 lowerBitSetCalls(BitSets, JumpTable, GlobalLayout);
813 JumpTableType, JumpTable,
836 createJumpTableEntry(JumpTable, Functions[I], I));
837 JumpTable->setInitializer(
    [all...]
  /art/compiler/utils/arm/
assembler_arm.h 84 class JumpTable {
86 explicit JumpTable(std::vector<Label*>&& labels)
119 DISALLOW_COPY_AND_ASSIGN(JumpTable);
    [all...]

Completed in 205 milliseconds