Searched refs:getValueFor (Results 1 – 12 of 12) sorted by relevance
/external/llvm-project/llvm/tools/llvm-exegesis/lib/ |
D | CodeTemplate.cpp | 35 MCOperand &InstructionTemplate::getValueFor(const Variable &Var) { in getValueFor() function in llvm::exegesis::InstructionTemplate 39 const MCOperand &InstructionTemplate::getValueFor(const Variable &Var) const { in getValueFor() function in llvm::exegesis::InstructionTemplate 43 MCOperand &InstructionTemplate::getValueFor(const Operand &Op) { in getValueFor() function in llvm::exegesis::InstructionTemplate 44 return getValueFor(Instr->Variables[Op.getVariableIndex()]); in getValueFor() 47 const MCOperand &InstructionTemplate::getValueFor(const Operand &Op) const { in getValueFor() function in llvm::exegesis::InstructionTemplate 48 return getValueFor(Instr->Variables[Op.getVariableIndex()]); in getValueFor() 62 Result.addOperand(getValueFor(Op)); in build()
|
D | CodeTemplate.h | 34 MCOperand &getValueFor(const Variable &Var); 35 const MCOperand &getValueFor(const Variable &Var) const; 36 MCOperand &getValueFor(const Operand &Op); 37 const MCOperand &getValueFor(const Operand &Op) const;
|
D | ParallelSnippetGenerator.cpp | 144 TmpIT.getValueFor(*TiedVariables[VarId]) = in generateSnippetUsingStaticRenaming() 198 Variant.getValueFor(Op) = MCOperand::createReg(RandomReg); in generateCodeTemplates() 210 Variant.getValueFor(Op) = MCOperand::createReg(RandomReg); in generateCodeTemplates()
|
D | SnippetGenerator.cpp | 116 if (Op.isExplicit() && IT.getValueFor(Op).isReg()) in computeRegisterInitialValues() 117 return IT.getValueFor(Op).getReg(); in computeRegisterInitialValues() 196 auto &AssignedValue = IB.getValueFor(*ROV.Op); in setRegisterOperandValue() 265 MCOperand &AssignedValue = IT.getValueFor(Var); in randomizeUnsetVariables()
|
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/X86/ |
D | TargetTest.cpp | 367 EXPECT_THAT(IT.getValueFor(I.Operands[2]), IsReg(X86::RDI)); in TEST_F() 368 EXPECT_THAT(IT.getValueFor(I.Operands[3]), IsImm(1)); in TEST_F() 369 EXPECT_THAT(IT.getValueFor(I.Operands[4]), IsReg(0)); in TEST_F() 370 EXPECT_THAT(IT.getValueFor(I.Operands[5]), IsImm(kOffset)); in TEST_F() 371 EXPECT_THAT(IT.getValueFor(I.Operands[6]), IsReg(0)); in TEST_F() 380 EXPECT_THAT(IT.getValueFor(I.Operands[4]), IsReg(X86::RDI)); in TEST_F() 381 EXPECT_THAT(IT.getValueFor(I.Operands[5]), IsImm(1)); in TEST_F() 382 EXPECT_THAT(IT.getValueFor(I.Operands[6]), IsReg(0)); in TEST_F() 383 EXPECT_THAT(IT.getValueFor(I.Operands[7]), IsImm(kOffset)); in TEST_F() 384 EXPECT_THAT(IT.getValueFor(I.Operands[8]), IsReg(0)); in TEST_F()
|
D | SnippetGeneratorTest.cpp | 431 IT.getValueFor(IT.getInstr().Variables[0]) = MCOperand::createReg(X86::AX); in TEST_F() 446 Mov.getValueFor(Mov.getInstr().Variables[0]) = in TEST_F() 448 Mov.getValueFor(Mov.getInstr().Variables[1]) = MCOperand::createImm(42); in TEST_F() 453 Add.getValueFor(Add.getInstr().Variables[0]) = in TEST_F() 455 Add.getValueFor(Add.getInstr().Variables[1]) = in TEST_F()
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/ |
D | AttrData.java | 24 public String getValueFor(String key) { in getValueFor() method in AttrData
|
/external/llvm-project/llvm/tools/llvm-exegesis/lib/PowerPC/ |
D | Target.cpp | 21 IT.getValueFor(Op) = OpVal; in setMemOp()
|
/external/llvm-project/llvm/tools/llvm-exegesis/lib/Mips/ |
D | Target.cpp | 46 IT.getValueFor(Op) = OpVal; in setMemOp()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | Converter2.java | 204 String valueFor = attrData.getValueFor(key); in findValueFor()
|
D | Converter.java | 324 String valueFor = attrData.getValueFor(key); in findValueFor()
|
/external/llvm-project/llvm/tools/llvm-exegesis/lib/X86/ |
D | Target.cpp | 224 IT.getValueFor(Op) = OpVal; in setMemOp()
|