HomeSort by relevance Sort by last modified time
    Searched refs:VarInfo (Results 1 - 25 of 33) sorted by null

1 2

  /external/clang/unittests/AST/
EvaluateAsRValueTest.cpp 35 explicit EvaluateConstantInitializersVisitor(VarInfoMap &VarInfo)
36 : VarInfo(VarInfo) {}
41 /// For each VarDecl with an initializer this also records in VarInfo
47 VarInfo[VD->getNameAsString()] = WasEvaluated;
55 VarInfoMap &VarInfo;
72 VarInfoMap VarInfo;
73 EvaluateConstantInitializersVisitor Evaluator(VarInfo);
75 EXPECT_EQ(2u, VarInfo.size());
76 EXPECT_FALSE(VarInfo["Dependent"])
    [all...]
  /external/v8/src/asmjs/
asm-parser.h 91 struct VarInfo {
105 VarInfo* var_info;
160 ZoneVector<VarInfo> global_var_info_;
161 ZoneVector<VarInfo> local_var_info_;
295 VarInfo* GetVarInfo(AsmJsScanner::token_t token);
296 uint32_t VarIndex(VarInfo* info);
297 void DeclareGlobal(VarInfo* info, bool mutable_variable, AsmType* type,
300 void DeclareStdlibFunc(VarInfo* info, VarKind kind, AsmType* type);
302 bool mutable_variable, VarInfo* info);
333 void ValidateModuleVarImport(VarInfo* info, bool mutable_variable)
    [all...]
asm-parser.cc 210 wasm::AsmJsParser::VarInfo* AsmJsParser::GetVarInfo(
232 uint32_t AsmJsParser::VarIndex(VarInfo* info) {
239 VarInfo* info) {
249 void AsmJsParser::DeclareGlobal(VarInfo* info, bool mutable_variable,
258 void AsmJsParser::DeclareStdlibFunc(VarInfo* info, VarKind kind,
441 VarInfo* info = GetVarInfo(Consume());
487 void AsmJsParser::ValidateModuleVarFromGlobal(VarInfo* info,
489 VarInfo* src_info = GetVarInfo(Consume());
535 void AsmJsParser::ValidateModuleVarImport(VarInfo* info,
564 void AsmJsParser::ValidateModuleVarNewStdlib(VarInfo* info)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LiveVariables.h 55 /// VarInfo - This represents the regions where a virtual register is live in
81 struct VarInfo {
97 VarInfo() : NumUses(0) {}
128 IndexedMap<VarInfo, VirtReg2IndexFunctor> VirtRegInfo;
279 /// getVarInfo - Return the VarInfo structure for the specified VIRTUAL
281 VarInfo &getVarInfo(unsigned RegIdx);
283 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
285 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 53 /// VarInfo - This represents the regions where a virtual register is live in
79 struct VarInfo {
120 IndexedMap<VarInfo, VirtReg2IndexFunctor> VirtRegInfo;
272 /// getVarInfo - Return the VarInfo structure for the specified VIRTUAL
274 VarInfo &getVarInfo(unsigned RegIdx);
276 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
278 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
LiveVariables.h 53 /// VarInfo - This represents the regions where a virtual register is live in
79 struct VarInfo {
119 IndexedMap<VarInfo, VirtReg2IndexFunctor> VirtRegInfo;
271 /// getVarInfo - Return the VarInfo structure for the specified VIRTUAL
273 VarInfo &getVarInfo(unsigned RegIdx);
275 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
277 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
  /external/swiftshader/third_party/subzero/src/
IceVariableSplitting.cpp 55 struct VarInfo {
65 VarInfo() = default;
68 VarInfo(const VarInfo &) = delete;
69 VarInfo &operator=(const VarInfo &) = delete;
150 CfgVector<VarInfo> Map;
IceTargetLowering.cpp 604 CfgUnorderedMap<Variable *, UseInfo> VarInfo;
648 VarInfo[NewVar] = Info;
664 auto &Info = VarInfo[ExtraVar];
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 720 Instruction *DIBuilder::insertDeclare(Value *Storage, DILocalVariable *VarInfo,
723 assert(VarInfo && "empty or invalid DILocalVariable* passed to dbg.declare");
726 VarInfo->getScope()->getSubprogram() &&
731 trackIfUnresolved(VarInfo);
734 MetadataAsValue::get(VMContext, VarInfo),
739 Instruction *DIBuilder::insertDeclare(Value *Storage, DILocalVariable *VarInfo,
742 assert(VarInfo && "empty or invalid DILocalVariable* passed to dbg.declare");
745 VarInfo->getScope()->getSubprogram() &&
750 trackIfUnresolved(VarInfo);
753 MetadataAsValue::get(VMContext, VarInfo),
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DIBuilder.cpp     [all...]
DebugInfo.cpp     [all...]
  /external/llvm/bindings/go/llvm/
DIBuilderBindings.h 132 LLVMMetadataRef VarInfo,
138 LLVMMetadataRef VarInfo,
DIBuilderBindings.cpp 225 LLVMMetadataRef VarInfo,
234 unwrap(Storage), unwrap<DILocalVariable>(VarInfo),
241 LLVMMetadataRef VarInfo,
250 unwrap(Val), Offset, unwrap<DILocalVariable>(VarInfo),
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DIBuilder.h 486 /// @param VarInfo Variable's debug info descriptor.
488 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
493 /// @param VarInfo Variable's debug info descriptor.
495 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
502 /// @param VarInfo Variable's debug info descriptor.
505 DIVariable VarInfo,
511 /// @param VarInfo Variable's debug info descriptor.
514 DIVariable VarInfo,
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 60 LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
67 LLVM_DUMP_METHOD void LiveVariables::VarInfo::dump() const {
84 /// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
85 LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
92 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
118 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
137 VarInfo& VRInfo = getVarInfo(reg);
183 VarInfo &VRInfo = getVarInfo(Reg);
685 VarInfo &VI = getVarInfo(Reg);
699 assert(removed && "kill not in register's VarInfo?")
    [all...]
PHIElimination.cpp 275 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
293 // for the VarInfo is not filled in.
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveVariables.cpp 58 LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
65 void LiveVariables::VarInfo::dump() const {
80 /// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
81 LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
88 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
113 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
132 VarInfo& VRInfo = getVarInfo(reg);
179 VarInfo &VRInfo = getVarInfo(Reg);
650 VarInfo &VI = getVarInfo(Reg);
664 assert(removed && "kill not in register's VarInfo?")
    [all...]
ProcessImplicitDefs.cpp 125 LiveVariables::VarInfo& vi = LV->getVarInfo(MO.getReg());
158 LiveVariables::VarInfo& vi = LV->getVarInfo(Reg);
267 // Update LiveVariables varinfo if the instruction is a kill.
269 LiveVariables::VarInfo& vi = LV->getVarInfo(Reg);
PHIElimination.cpp 241 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
260 // for the VarInfo is not filled in.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
LiveVariables.cpp 60 LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
68 LLVM_DUMP_METHOD void LiveVariables::VarInfo::dump() const {
84 /// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
85 LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
92 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
118 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
137 VarInfo& VRInfo = getVarInfo(reg);
183 VarInfo &VRInfo = getVarInfo(Reg);
685 VarInfo &VI = getVarInfo(Reg);
699 assert(removed && "kill not in register's VarInfo?")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DIBuilder.h 82 Instruction *insertDeclare(llvm::Value *Storage, DILocalVariable *VarInfo,
92 insertDbgValueIntrinsic(llvm::Value *Val, DILocalVariable *VarInfo,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
DIBuilder.cpp     [all...]
  /external/llvm/include/llvm/IR/
DIBuilder.h 653 /// \param VarInfo Variable's debug info descriptor.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DebugInfo.h     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrFormPkg.cpp     [all...]

Completed in 778 milliseconds

1 2