Home
last modified time | relevance | path

Searched refs:VarInfo (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/asmjs/
Dasm-parser.h92 struct VarInfo { struct
106 VarInfo* var_info; argument
173 base::Vector<VarInfo> global_var_info_;
174 base::Vector<VarInfo> local_var_info_;
313 VarInfo* GetVarInfo(AsmJsScanner::token_t token);
314 uint32_t VarIndex(VarInfo* info);
315 void DeclareGlobal(VarInfo* info, bool mutable_variable, AsmType* type,
317 void DeclareStdlibFunc(VarInfo* info, VarKind kind, AsmType* type);
319 ValueType vtype, bool mutable_variable, VarInfo* info);
349 void ValidateModuleVarImport(VarInfo* info, bool mutable_variable);
[all …]
Dasm-parser.cc199 wasm::AsmJsParser::VarInfo* AsmJsParser::GetVarInfo( in GetVarInfo()
203 base::Vector<VarInfo>& var_info = in GetVarInfo()
211 base::Vector<VarInfo> new_info{zone_->NewArray<VarInfo>(new_size), in GetVarInfo()
213 std::uninitialized_fill(new_info.begin(), new_info.end(), VarInfo{}); in GetVarInfo()
220 uint32_t AsmJsParser::VarIndex(VarInfo* info) { in VarIndex()
227 VarInfo* info) { in AddGlobalImport()
237 void AsmJsParser::DeclareGlobal(VarInfo* info, bool mutable_variable, in DeclareGlobal()
246 void AsmJsParser::DeclareStdlibFunc(VarInfo* info, VarKind kind, in DeclareStdlibFunc()
445 VarInfo* info = GetVarInfo(Consume()); in ValidateModuleVar()
497 void AsmJsParser::ValidateModuleVarFromGlobal(VarInfo* info, in ValidateModuleVarFromGlobal()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLiveVariables.h79 struct VarInfo { struct
119 IndexedMap<VarInfo, VirtReg2IndexFunctor> VirtRegInfo;
273 VarInfo &getVarInfo(unsigned RegIdx);
275 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
277 void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceVariableSplitting.cpp55 struct VarInfo { struct in Ice::__anon5985c4a60111::VariableMap
65 VarInfo() = default;
68 VarInfo(const VarInfo &) = delete;
69 VarInfo &operator=(const VarInfo &) = delete;
150 CfgVector<VarInfo> Map;
DIceTargetLowering.cpp560 CfgUnorderedMap<Variable *, UseInfo> VarInfo; in postRegallocSplitting() local
604 VarInfo[NewVar] = Info; in postRegallocSplitting()
620 auto &Info = VarInfo[ExtraVar]; in postRegallocSplitting()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveVariables.cpp60 LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const { in findKill()
68 LLVM_DUMP_METHOD void LiveVariables::VarInfo::dump() const { in dump()
85 LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) { in getVarInfo()
92 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo, in MarkVirtRegAliveInBlock()
118 void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo, in MarkVirtRegAliveInBlock()
137 VarInfo& VRInfo = getVarInfo(reg); in HandleVirtRegUse()
183 VarInfo &VRInfo = getVarInfo(Reg); in HandleVirtRegDef()
683 VarInfo &VI = getVarInfo(Reg); in replaceKillInstruction()
720 bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB, in isLiveIn()
739 LiveVariables::VarInfo &VI = getVarInfo(Reg); in isLiveOut()
[all …]
DPHIElimination.cpp292 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg); in LowerPHINode()
DMachineVerifier.cpp1946 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg); in checkLiveness()
2337 LiveVariables::VarInfo &VI = LiveVars->getVarInfo(Reg); in verifyLiveVariables()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDIBuilder.cpp852 Instruction *DIBuilder::insertDeclare(Value *Storage, DILocalVariable *VarInfo, in insertDeclare() argument
855 return insertDeclare(Storage, VarInfo, Expr, DL, InsertBefore->getParent(), in insertDeclare()
859 Instruction *DIBuilder::insertDeclare(Value *Storage, DILocalVariable *VarInfo, in insertDeclare() argument
865 return insertDeclare(Storage, VarInfo, Expr, DL, InsertAtEnd, InsertBefore); in insertDeclare()
881 DILocalVariable *VarInfo, in insertDbgValueIntrinsic() argument
886 V, VarInfo, Expr, DL, InsertBefore ? InsertBefore->getParent() : nullptr, in insertDbgValueIntrinsic()
891 DILocalVariable *VarInfo, in insertDbgValueIntrinsic() argument
895 return insertDbgValueIntrinsic(V, VarInfo, Expr, DL, InsertAtEnd, nullptr); in insertDbgValueIntrinsic()
922 Instruction *DIBuilder::insertDeclare(Value *Storage, DILocalVariable *VarInfo, in insertDeclare() argument
925 assert(VarInfo && "empty or invalid DILocalVariable* passed to dbg.declare"); in insertDeclare()
[all …]
DDebugInfo.cpp1347 LLVMMetadataRef VarInfo, LLVMMetadataRef Expr, in LLVMDIBuilderInsertDeclareBefore() argument
1350 unwrap(Storage), unwrap<DILocalVariable>(VarInfo), in LLVMDIBuilderInsertDeclareBefore()
1356 LLVMDIBuilderRef Builder, LLVMValueRef Storage, LLVMMetadataRef VarInfo, in LLVMDIBuilderInsertDeclareAtEnd() argument
1359 unwrap(Storage), unwrap<DILocalVariable>(VarInfo), in LLVMDIBuilderInsertDeclareAtEnd()
1366 LLVMMetadataRef VarInfo, in LLVMDIBuilderInsertDbgValueBefore() argument
1371 unwrap(Val), unwrap<DILocalVariable>(VarInfo), in LLVMDIBuilderInsertDbgValueBefore()
1378 LLVMMetadataRef VarInfo, in LLVMDIBuilderInsertDbgValueAtEnd() argument
1383 unwrap(Val), unwrap<DILocalVariable>(VarInfo), in LLVMDIBuilderInsertDbgValueAtEnd()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDIBuilder.h81 Instruction *insertDeclare(llvm::Value *Storage, DILocalVariable *VarInfo,
91 insertDbgValueIntrinsic(llvm::Value *Val, DILocalVariable *VarInfo,
802 Instruction *insertDeclare(llvm::Value *Storage, DILocalVariable *VarInfo,
812 Instruction *insertDeclare(llvm::Value *Storage, DILocalVariable *VarInfo,
837 DILocalVariable *VarInfo,
849 DILocalVariable *VarInfo,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DDebugInfo.h1222 LLVMDIBuilderRef Builder, LLVMValueRef Storage, LLVMMetadataRef VarInfo,
1237 LLVMDIBuilderRef Builder, LLVMValueRef Storage, LLVMMetadataRef VarInfo,
1251 LLVMMetadataRef VarInfo,
1269 LLVMMetadataRef VarInfo,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBTFDebug.h167 BTFKindVar(StringRef VarName, uint32_t TypeId, uint32_t VarInfo);
DBTFDebug.cpp329 BTFKindVar::BTFKindVar(StringRef VarName, uint32_t TypeId, uint32_t VarInfo) in BTFKindVar() argument
334 Info = VarInfo; in BTFKindVar()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMBaseInstrInfo.cpp282 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg); in convertToThreeAddress()